diff options
| author | Adam Gross <grossag@vmware.com> | 2020-11-17 02:17:33 (GMT) |
|---|---|---|
| committer | Adam Gross <grossag@vmware.com> | 2020-11-17 02:17:33 (GMT) |
| commit | a6fdbf0aa1320f4c2b6f4daa5b9496108d22e0cd (patch) | |
| tree | 490e3e0526d7eb9f31832073bf5907700dffae49 /test/Scanner/Python.py | |
| parent | 55b41b5841aaf1f86d8a8380e0f8603b45bcc49f (diff) | |
| download | SCons-a6fdbf0aa1320f4c2b6f4daa5b9496108d22e0cd.zip SCons-a6fdbf0aa1320f4c2b6f4daa5b9496108d22e0cd.tar.gz SCons-a6fdbf0aa1320f4c2b6f4daa5b9496108d22e0cd.tar.bz2 | |
Fix all tests
This change fixes all tests. It's still a a WIP change because I think the "imports" logic is wrong for file imports.
Diffstat (limited to 'test/Scanner/Python.py')
| -rw-r--r-- | test/Scanner/Python.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Scanner/Python.py b/test/Scanner/Python.py index bb6e2c7..b5b3ae5 100644 --- a/test/Scanner/Python.py +++ b/test/Scanner/Python.py @@ -24,15 +24,18 @@ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -Template for end-to-end test file. -Replace this with a description of the test. +Functional test for the Python scanner. Validates that the scanner is able to +find dynamically generated dependencies. The SConstruct copies in the +dependencies and runs a script. The expected behavior is that the scanner +picks up these dependencies, so SCons understands that the script shouldn't +be run until the files are copied. """ import TestSCons test = TestSCons.TestSCons() test.dir_fixture('Python') -test.run(arguments = '--debug=stacktrace .', stdout='') +test.run(arguments = '.') test.pass_test() # Local Variables: |
