tests/common/25: Remove spaces in exe name

ICC doesn't escape spaces in file paths while writing out the dependency
file, so don't use spaces to avoid a spurious failure.
This commit is contained in:
Nirbheek Chauhan 2016-12-29 08:44:38 +05:30
parent 84931e1f78
commit f024114c29
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ else
obj1 = lib1.extract_objects('src/lib.c') obj1 = lib1.extract_objects('src/lib.c')
obj2 = lib2.extract_objects(['lib.c']) obj2 = lib2.extract_objects(['lib.c'])
e1 = executable('main 1', 'main.c', objects : obj1) e1 = executable('main1', 'main.c', objects : obj1)
e2 = executable('main 2', 'main.c', objects : obj2) e2 = executable('main2', 'main.c', objects : obj2)
test('extraction test 1', e1) test('extraction test 1', e1)
test('extraction test 2', e2) test('extraction test 2', e2)