Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
There are a couple of testcases that aren't compliant and supression via
pragmas doesn't work for gcc < 4.8

No languages can work with -pedantic in the test-suite
  • Loading branch information
wsfulton committed Feb 11, 2015
1 parent a73a783 commit 9e56ae1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions testflags.py
Expand Up @@ -5,10 +5,10 @@
"d":c_common,
"go":c_common,
"guile":c_common,
"java":c_common + " -pedantic",
"javascript":c_common + " -pedantic",
"java":c_common,
"javascript":c_common,
"lua":c_common,
"octave":c_common + " -pedantic",
"octave":c_common,
"perl5":c_common,
"php":c_common,
"python":c_common,
Expand All @@ -20,16 +20,16 @@
cxx_common = "-Werror -fdiagnostics-show-option -std=c++98 -Wno-long-long -Wreturn-type"
cxxflags = {
"csharp":cxx_common,
"d":cxx_common + " -pedantic",
"go":cxx_common + " -pedantic",
"d":cxx_common,
"go":cxx_common,
"guile":cxx_common,
"java":cxx_common,
"javascript":cxx_common + " -pedantic",
"javascript":cxx_common,
"lua":cxx_common,
"octave":cxx_common,
"perl5":cxx_common,
"php":cxx_common + " -pedantic",
"python":cxx_common + " -pedantic",
"php":cxx_common,
"python":cxx_common,
"ruby":cxx_common,
"scilab":cxx_common,
"tcl":cxx_common,
Expand Down

0 comments on commit 9e56ae1

Please sign in to comment.