Skip to content

Commit e70709f

Browse files
committed
LLVMCodeBuilder: Move operator tests to separate test suites
1 parent 26a5c63 commit e70709f

35 files changed

+12050
-1496
lines changed

test/llvm/CMakeLists.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,39 @@ add_executable(
2222
llvmexecutablecode_test.cpp
2323
llvmcodebuilder_test.cpp
2424
llvminstructionlist_test.cpp
25+
operators/equal_comparison_test.cpp
26+
operators/greater_than_test.cpp
27+
operators/less_than_test.cpp
28+
operators/math/add_test.cpp
29+
operators/math/subtract_test.cpp
30+
operators/math/multiply_test.cpp
31+
operators/math/divide_test.cpp
32+
operators/math/random_test.cpp
33+
operators/math/random_int_test.cpp
34+
operators/math/mod_test.cpp
35+
operators/math/abs_test.cpp
36+
operators/math/round_test.cpp
37+
operators/math/floor_test.cpp
38+
operators/math/ceil_test.cpp
39+
operators/math/sqrt_test.cpp
40+
operators/math/sin_test.cpp
41+
operators/math/cos_test.cpp
42+
operators/math/tan_test.cpp
43+
operators/math/asin_test.cpp
44+
operators/math/acos_test.cpp
45+
operators/math/atan_test.cpp
46+
operators/math/ln_test.cpp
47+
operators/math/log10_test.cpp
48+
operators/math/exp_test.cpp
49+
operators/math/exp10_test.cpp
50+
operators/logic/and_test.cpp
51+
operators/logic/or_test.cpp
52+
operators/logic/not_test.cpp
53+
operators/string/string_equal_case_sensitive_test.cpp
54+
operators/string/string_equal_case_insensitive_test.cpp
55+
operators/string/string_concat_test.cpp
56+
operators/string/string_char_test.cpp
57+
operators/string/string_length_test.cpp
2558
type_analyzer/variabletypeafterbranch_test.cpp
2659
type_analyzer/variabletype_test.cpp
2760
type_analyzer/listtypeafterbranch_test.cpp

0 commit comments

Comments
 (0)