diff --git a/src/include/deepstate/DeepState.h b/src/include/deepstate/DeepState.h index 0436f3c..5fce7a4 100644 --- a/src/include/deepstate/DeepState.h +++ b/src/include/deepstate/DeepState.h @@ -235,7 +235,8 @@ DEEPSTATE_INLINE static void DeepState_Check(int expr) { DEEPSTATE_INLINE static tname DeepState_ ## Tname ## InRange( \ tname low, tname high) { \ tname x = DeepState_ ## Tname(); \ - if (!DeepState_UsingLibFuzzer) \ + if (!(DeepState_UsingLibFuzzer || HAS_FLAGS_input_test_file \ + || HAS_FLAGS_input_test_dir || HAS_FLAGS_input_test_files_dir)) \ (void) DeepState_Assume(low <= x && x <= high); \ else \ x = low + (x%((high+1)-low)); \