Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0699ec5

Browse files
committed
Fixed cppcheck-opensource#41 (Test failures on cygwin)
There was FAILED tests in cygwin but there was no bug in simplecpp.
1 parent b0f7185 commit 0699ec5

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

run-tests.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,27 @@ def cleanup(out):
3131
# skipping tests..
3232
skip = ['assembler-with-cpp.c',
3333
'builtin_line.c',
34+
'c99-6_10_3_3_p4.c',
35+
'clang_headers.c', # missing include <limits.h>
3436
'comment_save.c', # _Pragma
3537
'has_attribute.c',
38+
'has_attribute.cpp',
3639
'header_lookup1.c', # missing include <stddef.h>
3740
'line-directive-output.c',
41+
'macro_paste_hashhash.c',
3842
'microsoft-ext.c',
43+
'normalize-3.c', # gcc has different output \uAC00 vs \U0000AC00 on cygwin/linux
44+
'pr63831-1.c', # __has_attribute => works differently on cygwin/linux
45+
'pr63831-2.c', # __has_attribute => works differently on cygwin/linux
46+
'pr65238-1.c', # __has_attribute => works differently on cygwin/linux
3947
'_Pragma-location.c',
4048
'_Pragma-dependency.c',
4149
'_Pragma-dependency2.c',
4250
'_Pragma-physloc.c',
4351
'pragma-pushpop-macro.c', # pragma push/pop
4452
'x86_target_features.c',
4553
'warn-disabled-macro-expansion.c',
46-
'c99-6_10_3_3_p4.c',
47-
'macro_paste_hashhash.c'
54+
'ucnid-2011-1.c' # \u00A8 generates different output on cygwin/linux
4855
]
4956

5057
todo = [

0 commit comments

Comments
 (0)