Skip to content

Commit 66786ab

Browse files
committed
Drop adding - for compiler options in toolchain tests
1 parent 2a6deae commit 66786ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/framework/toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ def test_precision_flags(self):
937937
precs = ['strict', 'precise', 'loose', 'veryloose']
938938
prec_flags = {}
939939
for prec in precs:
940-
prec_flags[prec] = ' '.join('-%s' % x for x in Gcc.COMPILER_UNIQUE_OPTION_MAP[prec])
940+
prec_flags[prec] = ' '.join(Gcc.COMPILER_UNIQUE_OPTION_MAP[prec])
941941

942942
for prec in prec_flags:
943943
for enable in [True, False]:

0 commit comments

Comments
 (0)