File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 44 load_java_class.cpp \
55 require_expr.cpp \
66 require_goto_statements.cpp \
7+ require_parse_tree.cpp \
8+ require_symbol.cpp \
79 require_type.cpp \
10+ run_test_with_compilers.cpp \
811 # Empty last line (please keep above list sorted!)
912
1013INCLUDES = -I .. -I . -I ../../src
Original file line number Diff line number Diff line change 99#include " run_test_with_compilers.h"
1010
1111void run_test_with_compilers (
12- const std::function<void (std::string)> &test_with_compiler)
12+ const std::function<void (const std::string & )> &test_with_compiler)
1313{
14- test_with_compiler (" openjdk_8" );
15- test_with_compiler (" eclipse" );
16- test_with_compiler (" oracle_8" );
17- test_with_compiler (" oracle_9" );
14+ test_with_compiler (std::string ( " openjdk_8" ) );
15+ test_with_compiler (std::string ( " eclipse" ) );
16+ test_with_compiler (std::string ( " oracle_8" ) );
17+ test_with_compiler (std::string ( " oracle_9" ) );
1818}
Original file line number Diff line number Diff line change 1313#define CPROVER_TESTING_UTILS_RUN_TEST_WITH_COMPILERS_H
1414
1515#include < functional>
16+ #include < string>
1617
1718void run_test_with_compilers (
18- const std::function<void (std::string)> &test_with_compiler);
19+ const std::function<void (const std::string & )> &test_with_compiler);
1920
2021#endif // CPROVER_TESTING_UTILS_RUN_TEST_WITH_COMPILERS_H
You can’t perform that action at this time.
0 commit comments