diff --git a/test/makefile b/test/makefile index b4d4c5a..3850b2f 100644 --- a/test/makefile +++ b/test/makefile @@ -66,11 +66,21 @@ test_008: $(FLAWFINDER) test.c test-results-008.txt @diff -u correct-results-008.txt test-results-008.txt +test_009: $(FLAWFINDER) test-cpp-digit-separator.cpp + @echo 'test_009 (C++ digit separator)' +# C++ file should have no problem recognizing ' as digit separator + @$(PYTHON) $(FLAWFINDER) test-cpp-digit-separator.cpp > /dev/null +# C file should fail with unterminated char literal error + @$(PYTHON) $(FLAWFINDER) test-cpp-digit-separator.c 2>&1 \ + | grep 'File ended while in string.' \ + > /dev/null + # Run all tests on *one* version of Python; # output shows differences from expected results. # If everything works as expected, it just prints test numbers. # Set PYTHON as needed, including to "" -test: test_001 test_002 test_003 test_004 test_005 test_006 test_007 test_008 +test: test_001 test_002 test_003 test_004 test_005 test_006 test_007 test_008 \ + test_009 @echo 'All tests pass!' # Usual check routine. Run all tests using *both* python2 and python3. diff --git a/test/test-cpp-digit-separator.c b/test/test-cpp-digit-separator.c new file mode 100644 index 0000000..05232ef --- /dev/null +++ b/test/test-cpp-digit-separator.c @@ -0,0 +1 @@ +int main() { return 0'000; } \ No newline at end of file diff --git a/test/test-cpp-digit-separator.cpp b/test/test-cpp-digit-separator.cpp new file mode 100644 index 0000000..05232ef --- /dev/null +++ b/test/test-cpp-digit-separator.cpp @@ -0,0 +1 @@ +int main() { return 0'000; } \ No newline at end of file