diff --git a/cpp/ql/test/library-tests/builtins/types/types.c b/cpp/ql/test/library-tests/builtins/types/types.c deleted file mode 100644 index c4246f2273d..00000000000 --- a/cpp/ql/test/library-tests/builtins/types/types.c +++ /dev/null @@ -1,5 +0,0 @@ - -_Decimal32 d32; -_Decimal64 d64; -_Decimal128 d128; - diff --git a/cpp/ql/test/library-tests/builtins/types/types.expected b/cpp/ql/test/library-tests/builtins/types/types.expected deleted file mode 100644 index deaca8e4c28..00000000000 --- a/cpp/ql/test/library-tests/builtins/types/types.expected +++ /dev/null @@ -1,7 +0,0 @@ -| file://:0:0:0:0 | fp_offset | file://:0:0:0:0 | unsigned int | -| file://:0:0:0:0 | gp_offset | file://:0:0:0:0 | unsigned int | -| file://:0:0:0:0 | overflow_arg_area | file://:0:0:0:0 | void * | -| file://:0:0:0:0 | reg_save_area | file://:0:0:0:0 | void * | -| types.c:2:12:2:14 | d32 | file://:0:0:0:0 | _Decimal32 | -| types.c:3:12:3:14 | d64 | file://:0:0:0:0 | _Decimal64 | -| types.c:4:13:4:16 | d128 | file://:0:0:0:0 | _Decimal128 | diff --git a/cpp/ql/test/library-tests/builtins/types/types.ql b/cpp/ql/test/library-tests/builtins/types/types.ql deleted file mode 100644 index 560d1a66fb1..00000000000 --- a/cpp/ql/test/library-tests/builtins/types/types.ql +++ /dev/null @@ -1,5 +0,0 @@ -import cpp - -from Variable v, Type t -where t = v.getType() -select v, t diff --git a/cpp/ql/test/library-tests/literals/literals/literals.c b/cpp/ql/test/library-tests/literals/literals/literals.c index 70a98a98608..1fc8e990343 100644 --- a/cpp/ql/test/library-tests/literals/literals/literals.c +++ b/cpp/ql/test/library-tests/literals/literals/literals.c @@ -1,6 +1,4 @@ -double dd = 1.0d; -double dD = 1.0D; double df = 1.0f; double dF = 1.0F; double di = 1.0i; diff --git a/cpp/ql/test/library-tests/literals/literals/literals.expected b/cpp/ql/test/library-tests/literals/literals/literals.expected index a3fd43a7f04..4be96d5964b 100644 --- a/cpp/ql/test/library-tests/literals/literals/literals.expected +++ b/cpp/ql/test/library-tests/literals/literals/literals.expected @@ -1,14 +1,12 @@ | literals.c:2:13:2:16 | 1.0 | | literals.c:3:13:3:16 | 1.0 | -| literals.c:4:13:4:16 | 1.0 | -| literals.c:5:13:5:16 | 1.0 | +| literals.c:4:13:4:16 | (0.0,1.0i) | +| literals.c:5:13:5:16 | (0.0,1.0i) | | literals.c:6:13:6:16 | (0.0,1.0i) | | literals.c:7:13:7:16 | (0.0,1.0i) | -| literals.c:8:13:8:16 | (0.0,1.0i) | -| literals.c:9:13:9:16 | (0.0,1.0i) | +| literals.c:8:13:8:16 | 1.0 | +| literals.c:9:13:9:16 | 1.0 | | literals.c:10:13:10:16 | 1.0 | | literals.c:11:13:11:16 | 1.0 | | literals.c:12:13:12:16 | 1.0 | | literals.c:13:13:13:16 | 1.0 | -| literals.c:14:13:14:16 | 1.0 | -| literals.c:15:13:15:16 | 1.0 | diff --git a/cpp/ql/test/library-tests/templates/type_instantiations/types.expected b/cpp/ql/test/library-tests/templates/type_instantiations/types.expected index e6c8b1d9406..0f2c2b91917 100644 --- a/cpp/ql/test/library-tests/templates/type_instantiations/types.expected +++ b/cpp/ql/test/library-tests/templates/type_instantiations/types.expected @@ -12,9 +12,6 @@ | file://:0:0:0:0 | _Complex float | | file://:0:0:0:0 | _Complex long double | | file://:0:0:0:0 | _Complex std::float16_t | -| file://:0:0:0:0 | _Decimal32 | -| file://:0:0:0:0 | _Decimal64 | -| file://:0:0:0:0 | _Decimal128 | | file://:0:0:0:0 | _Float16 | | file://:0:0:0:0 | _Float32 | | file://:0:0:0:0 | _Float32x | diff --git a/cpp/ql/test/library-tests/type_sizes/type_sizes.expected b/cpp/ql/test/library-tests/type_sizes/type_sizes.expected index ac1344753e9..63d2b2715ea 100644 --- a/cpp/ql/test/library-tests/type_sizes/type_sizes.expected +++ b/cpp/ql/test/library-tests/type_sizes/type_sizes.expected @@ -32,9 +32,6 @@ | file://:0:0:0:0 | _Complex float | 8 | | file://:0:0:0:0 | _Complex long double | 32 | | file://:0:0:0:0 | _Complex std::float16_t | 4 | -| file://:0:0:0:0 | _Decimal32 | 4 | -| file://:0:0:0:0 | _Decimal64 | 8 | -| file://:0:0:0:0 | _Decimal128 | 16 | | file://:0:0:0:0 | _Float16 | 2 | | file://:0:0:0:0 | _Float32 | 4 | | file://:0:0:0:0 | _Float32x | 8 | diff --git a/cpp/ql/test/library-tests/unspecified_type/types/unspecified_type.expected b/cpp/ql/test/library-tests/unspecified_type/types/unspecified_type.expected index 3f22b9f98f5..b335bfcf178 100644 --- a/cpp/ql/test/library-tests/unspecified_type/types/unspecified_type.expected +++ b/cpp/ql/test/library-tests/unspecified_type/types/unspecified_type.expected @@ -14,9 +14,6 @@ | file://:0:0:0:0 | _Complex float | _Complex float | | file://:0:0:0:0 | _Complex long double | _Complex long double | | file://:0:0:0:0 | _Complex std::float16_t | _Complex std::float16_t | -| file://:0:0:0:0 | _Decimal32 | _Decimal32 | -| file://:0:0:0:0 | _Decimal64 | _Decimal64 | -| file://:0:0:0:0 | _Decimal128 | _Decimal128 | | file://:0:0:0:0 | _Float16 | _Float16 | | file://:0:0:0:0 | _Float32 | _Float32 | | file://:0:0:0:0 | _Float32x | _Float32x | diff --git a/cpp/ql/test/library-tests/variables/variables/types.expected b/cpp/ql/test/library-tests/variables/variables/types.expected index 5d8cec1cff8..3968d7205d5 100644 --- a/cpp/ql/test/library-tests/variables/variables/types.expected +++ b/cpp/ql/test/library-tests/variables/variables/types.expected @@ -13,9 +13,6 @@ | _Complex float | BinaryFloatingPointType, ComplexNumberType, GuardConditionImpl | | | | | | _Complex long double | BinaryFloatingPointType, ComplexNumberType, GuardConditionImpl | | | | | | _Complex std::float16_t | BinaryFloatingPointType, ComplexNumberType, GuardConditionImpl | | | | | -| _Decimal32 | Decimal32Type, GuardConditionImpl | | | | | -| _Decimal64 | Decimal64Type, GuardConditionImpl | | | | | -| _Decimal128 | Decimal128Type, GuardConditionImpl | | | | | | _Float16 | BinaryFloatingPointType, GuardConditionImpl, RealNumberType | | | | | | _Float32 | BinaryFloatingPointType, GuardConditionImpl, RealNumberType | | | | | | _Float32x | BinaryFloatingPointType, GuardConditionImpl, RealNumberType | | | | |