diff options
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index 2e29af7..262bf7b 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -630,7 +630,7 @@ class InternalTests(unittest.TestCase): if '--libs' not in args: return 0, '' if args[0] == 'foo': - return 0, '-L{} -lfoo -L{} -lbar'.format(p1.as_posix(), p2.as_posix()) + return 0, '-L{} -lfoo -L{} -lbar'.format(p2.as_posix(), p1.as_posix()) if args[0] == 'bar': return 0, '-L{} -lbar'.format(p2.as_posix()) if args[0] == 'internal': |