diff options
author | Jacob Cassagnol <87133045+jcassagnol-public@users.noreply.github.com> | 2021-11-10 15:07:35 (GMT) |
---|---|---|
committer | Jacob Cassagnol <87133045+jcassagnol-public@users.noreply.github.com> | 2021-11-10 15:07:35 (GMT) |
commit | 1ace1cff2b4b5950175a9582ed5b762a9b9c4f2d (patch) | |
tree | 732a11551b6c67914036183af44f8a80c8cfd143 | |
parent | da5c6191b3e4d60f08d0b15c89e8621d8db976d8 (diff) | |
download | SCons-1ace1cff2b4b5950175a9582ed5b762a9b9c4f2d.zip SCons-1ace1cff2b4b5950175a9582ed5b762a9b9c4f2d.tar.gz SCons-1ace1cff2b4b5950175a9582ed5b762a9b9c4f2d.tar.bz2 |
Two more f-strings got away.
These lines setup the sconsign program to use the correct filename for the test.
-rw-r--r-- | test/Configure/implicit-cache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Configure/implicit-cache.py b/test/Configure/implicit-cache.py index fb7d766..2cf74d1 100644 --- a/test/Configure/implicit-cache.py +++ b/test/Configure/implicit-cache.py @@ -97,7 +97,7 @@ else: database_name=test.get_sconsignname() + ".dblite" -test.run_sconsign(f'-d .sconf_temp -e {test_filename} --raw {database_name}') +test.run_sconsign('-d .sconf_temp -e {} --raw {}'.format(test_filename, database_name)) old_sconsign_dblite = test.stdout() # Second run: Have the configure subsystem also look for foo.h, so @@ -110,7 +110,7 @@ old_sconsign_dblite = test.stdout() test.run(arguments = '--implicit-cache USE_FOO=1 .') -test.run_sconsign(f'-d .sconf_temp -e {test_filename} --raw {database_name}') +test.run_sconsign('-d .sconf_temp -e {} --raw {}'.format(test_filename, database_name)) new_sconsign_dblite = test.stdout() if old_sconsign_dblite != new_sconsign_dblite: |