Skip to content

Commit d70a08a

Browse files
author
thk123
committed
Util files were moved into a util library
Updating includes to account for this. Code contributed by @NlightNFotis
1 parent 0681219 commit d70a08a

6 files changed

+11
-11
lines changed

unit/java_bytecode/java_bytecode_parse_generics/parse_derived_generic_class.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
\*******************************************************************/
88

9-
#include <catch.hpp>
9+
#include <testing-utils/catch.hpp>
1010

1111
#include <istream>
1212
#include <memory>
@@ -16,7 +16,7 @@
1616
#include <util/message.h>
1717
#include <java_bytecode/java_bytecode_language.h>
1818
#include <iostream>
19-
#include <src/java_bytecode/load_java_class.h>
19+
#include <testing-utils/load_java_class.h>
2020

2121
SCENARIO(
2222
"java_bytecode_parse_derived_generic_class",

unit/java_bytecode/java_bytecode_parse_generics/parse_generic_array_class.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
77
\*******************************************************************/
88

9-
#include <catch.hpp>
9+
#include <testing-utils/catch.hpp>
1010

1111
#include <util/config.h>
1212
#include <util/cmdline.h>
1313
#include <util/language.h>
1414
#include <util/prefix.h>
1515

1616
#include <java_bytecode/java_bytecode_language.h>
17-
#include <src/java_bytecode/load_java_class.h>
17+
#include <testing-utils/load_java_class.h>
1818

1919
#include <iostream>
2020
#include <util/namespace.h>

unit/java_bytecode/java_bytecode_parse_generics/parse_generic_functions.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
\*******************************************************************/
88

9-
#include <catch.hpp>
9+
#include <testing-utils/catch.hpp>
1010

1111
#include <util/config.h>
1212
#include <util/cmdline.h>
@@ -16,7 +16,7 @@
1616
#include <java_bytecode/java_bytecode_language.h>
1717

1818
#include <iostream>
19-
#include <src/java_bytecode/load_java_class.h>
19+
#include <testing-utils/load_java_class.h>
2020

2121
SCENARIO(
2222
"java_bytecode_parse_generic_function",

unit/java_bytecode/java_bytecode_parse_generics/parse_generic_wildcard_function.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
\*******************************************************************/
88

9-
#include <catch.hpp>
9+
#include <testing-utils/catch.hpp>
1010

1111
#include <util/config.h>
1212
#include <util/cmdline.h>
@@ -16,7 +16,7 @@
1616
#include <java_bytecode/java_bytecode_language.h>
1717

1818
#include <iostream>
19-
#include <src/java_bytecode/load_java_class.h>
19+
#include <testing-utils/load_java_class.h>
2020

2121
SCENARIO(
2222
"java_bytecode_parse_generic_wildcard",

unit/java_bytecode/java_bytecode_parse_generics/parse_recursive_generic_class.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
77
\*******************************************************************/
88

9-
#include <catch.hpp>
9+
#include <testing-utils/catch.hpp>
1010

1111
#include <util/config.h>
1212
#include <util/cmdline.h>
1313
#include <util/language.h>
1414
#include <util/prefix.h>
1515

1616
#include <java_bytecode/java_bytecode_language.h>
17-
#include <src/java_bytecode/load_java_class.h>
17+
#include <testing-utils/load_java_class.h>
1818

1919
#include <iostream>
2020
#include <util/namespace.h>

unit/java_bytecode/java_utils_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string>
1212
#include <vector>
1313

14-
#include <catch.hpp>
14+
#include <testing-utils/catch.hpp>
1515

1616
#include <java_bytecode/java_utils.h>
1717

0 commit comments

Comments
 (0)