Skip to content

Commit 3e609d1

Browse files
committed
Removed pedantic, not support by Linux
1 parent ebccca9 commit 3e609d1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

test/run_compare.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
OPTS="-Wall -Werror -Wextra -Wpedantic -Wno-pointer-to-int-cast"
2+
OPTS="-Wall -Werror -Wextra -Wno-pointer-to-int-cast"
33

44
NEW=../utility/mapcode
55
OLD=$HOME/bin/mapcode-2.3.1

test/run_gcov.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
OPTS="-Wall -Werror -Wextra -Wpedantic -Wno-pointer-to-int-cast -fprofile-arcs -ftest-coverage"
2+
OPTS="-Wall -Werror -Wextra -Wno-pointer-to-int-cast -fprofile-arcs -ftest-coverage"
33
LIB="../mapcodelib/mapcoder.o"
44

55
TEST=`which gcov`

test/run_gprof.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
OPTS="-Wall -Werror -Wextra -Wpedantic -Wno-pointer-to-int-cast"
2+
OPTS="-Wall -Werror -Wextra -Wno-pointer-to-int-cast"
33
LIB="../mapcodelib/mapcoder.o"
44

55
TEST=`which gprof`

test/run_normal.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
OPTS="-Wall -Werror -Wextra -Wpedantic -Wno-pointer-to-int-cast"
2+
OPTS="-Wall -Werror -Wextra -Wno-pointer-to-int-cast"
33

44
echo "!! -------------------------------------------------------------"
55
echo "Run normal..."

test/run_sanitizer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
OPTS="-Wall -Werror -Wextra -Wpedantic -Wno-pointer-to-int-cast"
2+
OPTS="-Wall -Werror -Wextra -Wno-pointer-to-int-cast"
33
LIB="../mapcodelib/mapcoder.o"
44

55
export ASAN_OPTIONS=debug=true:strict_string_checks=1:detect_stack_use_after_return=true:detect_invalid_pointer_pairs=99999:detect_container_overflow=true:detect_odr_violation=2:check_initialization_order=true:strict_init_order=true

test/run_valgrind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
OPTS="-Wall -Werror -Wextra -Wpedantic -Wno-pointer-to-int-cast"
2+
OPTS="-Wall -Werror -Wextra -Wno-pointer-to-int-cast"
33
LIB="../mapcodelib/mapcoder.o"
44

55
TEST=`which valgrind`

0 commit comments

Comments
 (0)