File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 4
4
load_java_class.cpp \
5
5
require_expr.cpp \
6
6
require_goto_statements.cpp \
7
+ require_parse_tree.cpp \
8
+ require_symbol.cpp \
7
9
require_type.cpp \
10
+ run_test_with_compilers.cpp \
8
11
# Empty last line (please keep above list sorted!)
9
12
10
13
INCLUDES = -I .. -I . -I ../../src
Original file line number Diff line number Diff line change 9
9
#include " run_test_with_compilers.h"
10
10
11
11
void 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)
13
13
{
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" ) );
18
18
}
Original file line number Diff line number Diff line change 13
13
#define CPROVER_TESTING_UTILS_RUN_TEST_WITH_COMPILERS_H
14
14
15
15
#include < functional>
16
+ #include < string>
16
17
17
18
void 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);
19
20
20
21
#endif // CPROVER_TESTING_UTILS_RUN_TEST_WITH_COMPILERS_H
You can’t perform that action at this time.
0 commit comments