diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-05-19 10:23:23 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-05-19 10:23:23 -0400 |
| commit | 384e9e4ed6ebf88542b732d0ce609d97b8551d4e (patch) | |
| tree | 913c0d4e3f0690f37590e356b4ae8333a8d5092e | |
| parent | 9fcb821db2f7c8e48372ee6e89fd48992d25a802 (diff) | |
pkstn: bool skip negative test
| -rw-r--r-- | test/pkstn.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/pkstn.cpp b/test/pkstn.cpp index d29f216..21f0319 100644 --- a/test/pkstn.cpp +++ b/test/pkstn.cpp @@ -44,6 +44,7 @@ enum STRNUM_TESTS : uint32_t { TEST_FLOATING_UNDERFLOW = 0x00001000, TEST_FLOATING_OVERFLOW = 0x00002000, TEST_INCONVERTIBLE = 0x00010000, + TEST_BOOL = 0x000100F7, TEST_SCALAR = 0x000100FF, TEST_FLOATS = 0x0001FF00, TEST_ALL = 0xFFFFFFFF, @@ -200,7 +201,7 @@ int main(int argc, char *argv[]) // bool { fprintf(stdout, "\npkstn: starting bool\n"); - test<bool, TEST_SCALAR>(); + test<bool, TEST_BOOL>(); } // stn_float |
