@@ -12,7 +12,7 @@ target_link_libraries(tensorsTest
12
12
Base
13
13
gtest
14
14
testMain)
15
- add_test (tensorsTest ${GLOW_BINARY_DIR} /tests/tensorsTest)
15
+ add_glow_test (tensorsTest ${GLOW_BINARY_DIR} /tests/tensorsTest)
16
16
17
17
add_executable (gradCheckTest
18
18
gradCheckTest.cpp)
@@ -24,7 +24,7 @@ target_link_libraries(gradCheckTest
24
24
IR
25
25
gtest
26
26
testMain)
27
- add_test (gradCheckTest ${GLOW_BINARY_DIR} /tests/gradCheckTest)
27
+ add_glow_test (gradCheckTest ${GLOW_BINARY_DIR} /tests/gradCheckTest)
28
28
29
29
add_executable (IROptTest
30
30
IROptTest.cpp)
@@ -35,7 +35,7 @@ target_link_libraries(IROptTest
35
35
Optimizer
36
36
gtest
37
37
testMain)
38
- add_test (IROptTest ${GLOW_BINARY_DIR} /tests/IROptTest)
38
+ add_glow_test (IROptTest ${GLOW_BINARY_DIR} /tests/IROptTest)
39
39
40
40
add_executable (basicIRTest
41
41
basicIRTest.cpp)
@@ -45,7 +45,7 @@ target_link_libraries(basicIRTest
45
45
IR
46
46
gtest
47
47
testMain)
48
- add_test (basicIRTest ${GLOW_BINARY_DIR} /tests/basicIRTest)
48
+ add_glow_test (basicIRTest ${GLOW_BINARY_DIR} /tests/basicIRTest)
49
49
50
50
add_executable (backendTest
51
51
BackendTest.cpp)
@@ -56,7 +56,7 @@ target_link_libraries(backendTest
56
56
ExecutionEngine
57
57
gtest
58
58
testMain)
59
- add_test (backendTest ${GLOW_BINARY_DIR} /tests/backendTest)
59
+ add_glow_test (backendTest ${GLOW_BINARY_DIR} /tests/backendTest)
60
60
61
61
add_executable (MLTest
62
62
MLTest.cpp)
@@ -67,7 +67,7 @@ target_link_libraries(MLTest
67
67
ExecutionEngine
68
68
gtest
69
69
testMain)
70
- add_test (MLTest ${GLOW_BINARY_DIR} /tests/MLTest)
70
+ add_glow_test (MLTest ${GLOW_BINARY_DIR} /tests/MLTest)
71
71
72
72
add_executable (operatorTest
73
73
OperatorTest.cpp)
@@ -78,7 +78,7 @@ target_link_libraries(operatorTest
78
78
ExecutionEngine
79
79
gtest
80
80
testMain)
81
- add_test (operatorTest ${GLOW_BINARY_DIR} /tests/operatorTest)
81
+ add_glow_test (operatorTest ${GLOW_BINARY_DIR} /tests/operatorTest)
82
82
83
83
84
84
add_executable (graphTest
@@ -90,7 +90,7 @@ target_link_libraries(graphTest
90
90
IR
91
91
gtest
92
92
testMain)
93
- add_test (graphTest ${GLOW_BINARY_DIR} /tests/graphTest)
93
+ add_glow_test (graphTest ${GLOW_BINARY_DIR} /tests/graphTest)
94
94
95
95
add_executable (graphGradTest
96
96
graphGradTest.cpp)
@@ -101,7 +101,7 @@ target_link_libraries(graphGradTest
101
101
ExecutionEngine
102
102
gtest
103
103
testMain)
104
- add_test (graphGradTest ${GLOW_BINARY_DIR} /tests/graphGradTest)
104
+ add_glow_test (graphGradTest ${GLOW_BINARY_DIR} /tests/graphGradTest)
105
105
106
106
add_executable (graphOptzTest
107
107
graphOptzTest.cpp)
@@ -112,7 +112,7 @@ target_link_libraries(graphOptzTest
112
112
Optimizer
113
113
gtest
114
114
testMain)
115
- add_test (graphOptzTest ${GLOW_BINARY_DIR} /tests/graphOptzTest)
115
+ add_glow_test (graphOptzTest ${GLOW_BINARY_DIR} /tests/graphOptzTest)
116
116
117
117
add_executable (quantizationTest
118
118
quantizationTest.cpp)
@@ -123,7 +123,7 @@ target_link_libraries(quantizationTest
123
123
Quantization
124
124
gtest
125
125
testMain)
126
- add_test (quantizationTest ${GLOW_BINARY_DIR} /tests/quantizationTest)
126
+ add_glow_test (quantizationTest ${GLOW_BINARY_DIR} /tests/quantizationTest)
127
127
128
128
add_executable (UtilsTest
129
129
UtilsTest.cpp)
@@ -132,7 +132,7 @@ target_link_libraries(UtilsTest
132
132
Support
133
133
gtest
134
134
testMain)
135
- add_test (UtilsTest ${GLOW_BINARY_DIR} /tests/UtilsTest)
135
+ add_glow_test (UtilsTest ${GLOW_BINARY_DIR} /tests/UtilsTest)
136
136
137
137
if (GLOW_WITH_OPENCL)
138
138
add_executable (OCLTest
@@ -145,7 +145,7 @@ target_link_libraries(OCLTest
145
145
ExecutionEngine
146
146
gtest
147
147
testMain)
148
- add_test (OCLTest ${GLOW_BINARY_DIR} /tests/OCLTest)
148
+ add_glow_test (OCLTest ${GLOW_BINARY_DIR} /tests/OCLTest)
149
149
LIST (APPEND UNOPT_TESTS ./tests/OCLTest -optimize-ir=false &&)
150
150
endif ()
151
151
@@ -160,7 +160,7 @@ target_link_libraries(BackendCorrectnessTest
160
160
Support
161
161
gtest
162
162
testMain)
163
- add_test (BackendCorrectnessTest ${GLOW_BINARY_DIR} /tests/BackendCorrectnessTest)
163
+ add_glow_test (BackendCorrectnessTest ${GLOW_BINARY_DIR} /tests/BackendCorrectnessTest)
164
164
LIST (APPEND UNOPT_TESTS ./tests/BackendCorrectnessTest -optimize-ir=false &&)
165
165
166
166
if (GLOW_WITH_CPU)
@@ -176,7 +176,7 @@ target_link_libraries(GemmTest
176
176
Support
177
177
gtest
178
178
testMain)
179
- add_test (GemmTest ${GLOW_BINARY_DIR} /tests/GemmTest)
179
+ add_glow_test (GemmTest ${GLOW_BINARY_DIR} /tests/GemmTest)
180
180
LIST (APPEND UNOPT_TESTS ./tests/GemmTest -optimize-ir=false &&)
181
181
endif ()
182
182
@@ -187,7 +187,7 @@ target_link_libraries(memoryAllocatorTest
187
187
CodeGen
188
188
gtest
189
189
testMain)
190
- add_test (memoryAllocatorTest ${GLOW_BINARY_DIR} /tests/memoryAllocatorTest)
190
+ add_glow_test (memoryAllocatorTest ${GLOW_BINARY_DIR} /tests/memoryAllocatorTest)
191
191
192
192
193
193
LIST (APPEND UNOPT_TESTS
0 commit comments