File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 14
14
// #define SZ_USE_X86_AVX2 0
15
15
// #define SZ_USE_X86_AVX512 0
16
16
// #define SZ_USE_ARM_NEON 0
17
- // #define SZ_USE_ARM_SVE 0
17
+ #define SZ_USE_ARM_SVE 0
18
18
#define SZ_DEBUG 1 // Enforce aggressive logging for this unit.
19
19
20
20
// Put this at the top to make sure it pulls all the right dependencies
@@ -394,6 +394,10 @@ static void test_stl_compatibility_for_reads() {
394
394
assert (str (" 12341234" ) <= str (" 12341234" ));
395
395
assert (str (" 12341234" ) > str (" 12241224" ));
396
396
assert (str (" 12341234" ) < str (" 13241324" ));
397
+ assert (str (" 0123456789012345678901234567890123456789012345678901234567890123" ) ==
398
+ str (" 0123456789012345678901234567890123456789012345678901234567890123" ));
399
+ assert (str (" 0123456789012345678901234567890123456789012345678901234567890123" ) !=
400
+ str (" 0223456789012345678901234567890123456789012345678901234567890123" ));
397
401
398
402
// Comparisons.
399
403
assert (str (" a" ) != str (" b" ));
@@ -1501,8 +1505,8 @@ int main(int argc, char const **argv) {
1501
1505
1502
1506
// Basic utilities
1503
1507
test_arithmetical_utilities ();
1504
- test_memory_utilities ();
1505
- test_replacements ();
1508
+ // test_memory_utilities();
1509
+ // test_replacements();
1506
1510
1507
1511
// Compatibility with STL
1508
1512
#if SZ_DETECT_CPP_17 && __cpp_lib_string_view
You can’t perform that action at this time.
0 commit comments