summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4174 from jcbrill/jbrill-msvc-batchargsWilliam Deegan2022-07-2513-177/+1174
|\ | | | | MSVC enhancement to add all remaining msvc batch file command-line options as SCons variables
| * minor formatting updatesWilliam Deegan2022-07-259-32/+30
| |
| * Merge branch 'master' into jbrill-msvc-batchargsJoseph Brill2022-07-185-83/+45
| |\
| * | Add special case for msvc 14.0 and store/uwp specified via script args and ↵Joseph Brill2022-07-184-183/+141
| | | | | | | | | | | | sdk specified via construction variable or forced. Revise forced default toolset handling (may have passed default toolset as an argument inadvertently). Add more tests.
| * | Add msvc spectre libs test. Add library path checks to msvc sdk version and ↵Joseph Brill2022-07-173-6/+184
| | | | | | | | | | | | msvc toolset version tests.
| * | Rework special case for 9.0 VCForPython handling (vc dir and batchfile ↵Joseph Brill2022-07-141-57/+0
| | | | | | | | | | | | location). Add additional tests.
| * | Move individual tests file content into vcTests.pyJoseph Brill2022-07-133-269/+0
| | |
| * | Update UtilTests with version components tests and remove separate msvc ↵Joseph Brill2022-07-131-61/+0
| | | | | | | | | | | | version components test.
| * | Add additional tests. Remove trailing whitespace.Joseph Brill2022-07-113-57/+1
| | |
| * | Local flake8 recommendations.Joseph Brill2022-07-111-1/+0
| | |
| * | Fix msvc toolset versions test when not msvc version not installed.Joseph Brill2022-07-102-4/+5
| | |
| * | Modify msvc_query_version_toolset when version is None to use default ↵Joseph Brill2022-07-106-4/+201
| | | | | | | | | | | | version. Add additional tests.
| * | Move toolset version regexes to utility module. Rename default version method.Joseph Brill2022-07-091-2/+2
| | |
| * | Fix sider issues.Joseph Brill2022-07-091-2/+2
| | |
| * | Rework version convenience functions. Add additional tests.Joseph Brill2022-07-098-4/+301
| | |
| * | Disable cache for MSVC/MSVC_USE_SCRIPT_ARGS test.Joseph Brill2022-07-081-0/+3
| | |
| * | Fix sider issues.Joseph Brill2022-07-081-5/+5
| | |
| * | Add MSVC_SDK_VERSION tests.Joseph Brill2022-07-083-2/+240
| | |
| * | Additional policy tests for coverage.Joseph Brill2022-07-082-0/+25
| | |
| * | Add utility function for msvc_version components. Add convenience function ↵Joseph Brill2022-07-072-23/+7
| | | | | | | | | | | | to return list of installed msvc version component tuples for the test suite.
| * | Minor update to msvc exceptions and rework new unit tests.Joseph Brill2022-07-073-97/+148
| | |
| * | Fix invalid msvc version test.Joseph Brill2022-07-071-3/+2
| | |
| * | Return empty list instead of None in msvc_toolset_versions. Expand msvc ↵Joseph Brill2022-07-071-118/+180
| | | | | | | | | | | | toolset version tests.
| * | Fix typo in comment and add msvc not found, msvc script error, and msvc ↵Joseph Brill2022-07-073-0/+450
| | | | | | | | | | | | toolset versions tests.
| * | Rename msvc functions for consistency. Make additional msvc functions and ↵Joseph Brill2022-07-051-1/+1
| | | | | | | | | | | | exceptions available via MSCommon module.
| * | Merge branch 'master' into jbrill-msvc-batchargsJoseph Brill2022-06-2612-152/+313
| |\ \
| * | | Fix msvc notfound policy module path for testJoseph Brill2022-06-201-1/+1
| | | |
* | | | LEX_TABLE_FILE -> LEX_TABLES_FILEWilliam Deegan2022-07-201-1/+1
| | | |
* | | | Move LEXHEADERFILE, LEXTABLEFILE, YACCHEADERFILE, YACCGRAPHFILE -> separated ↵William Deegan2022-07-202-4/+4
| | | | | | | | | | | | | | | | by underscores for readability
* | | | Add lex/yacc filegen consvarsMats Wichmann2022-07-194-21/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lex and yacc tools both got two new construction variables for specifying side-effect creation of additional files, this method avoids the user embedding the options in LEXFLAGS and YACCFLAGS - the latter lets the commands generate the files, but the paths would not be properly relocated by SCons, so if the build was initiated in a subdirectory, the generated files would go into the top directory instead. Fixes #4154 Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | Merge pull request #4183 from mwichmann/maint/lex_yaccWilliam Deegan2022-07-1922-186/+460
|\ \ \ \ | |_|_|/ |/| | | Improvements to lex and yacc tools
| * | | Sider fixesMats Wichmann2022-06-302-6/+3
| | | | | | | | | | | | | | | | Signed-off-by: Mats Wichmann <mats@linux.com>
| * | | Improvements to lex and yacc toolsMats Wichmann2022-06-3022-186/+463
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The mocked tools mylex.py and myyacc.py now understand the file-generation options, and generate a dummy file with predictable contents, for checking. This allows more testing of the path through the SCons support for these two without needing live commands. New tests added which invoke the file-generation options, and make sure the extra files are created, and that SCons detects and tracks the added targets. Work is done in a subdirectory, which exposes some existing known inconsistent behavior (the regular generated file goes in the subdir per the LEXCOM and YACCOM generated line, while the ones generated from commandline options go in the topdir) - but we're going to allow that behavior to continue for backwards compat. Same fix applied to yacc tool that PR #4168 did for lex - do subst_list() instead of subst() to preserve spaces in paths. That fix left the lex tool unable to pass the new test, as it could not see the individual arguments in the FLAGS variable, which was solved by indexing into the subst'd list so we can iterate over the args again. Test and tool cleanup; add DefaultEnvironment calls, etc. Note this mentions, but does not address the problem described in issue 4154. Signed-off-by: Mats Wichmann <mats@linux.com>
* | | Ajust test for 3.11+ enhanced error messagesMats Wichmann2022-07-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were four tests failing because the regexes for expected stdout didn't match with the addition of pointers in exceptions showing where the error occurs. However, with 3.11.0b4, this has been backed off a bit: there are no arrow lines if the whole line would have been highlighted, since that adds no useful new information. As a result, only one test now failed, and the regex there is expanded to handle that case. This relates to, but does not close, issue #4162. Signed-off-by: Mats Wichmann <mats@linux.com>
* | | [Test] drop old exception msgsMats Wichmann2022-07-085-83/+44
|/ / | | | | | | | | | | | | | | | | Minor maintenance to drop a regex group in a few tests (including in a test framework test) which allowed for two different exception messages: one belongs to very old Pythons which are no longer supported by SCons. Signed-off-by: Mats Wichmann <mats@linux.com>
* | Merge pull request #4168 from dmoody256/lex_space_argsWilliam Deegan2022-06-255-0/+58
|\ \ | | | | | | Updated lex emitter to respect escaped spaces when climbing out of the SConscript dir
| * \ Merge branch 'master' into lex_space_argsWilliam Deegan2022-06-163-4/+131
| |\ \ | | |/
| * | Merge branch 'master' into lex_space_argsWilliam Deegan2022-06-146-2/+223
| |\ \
| * | | Updated lex emitter to respect escaped spaces when climbing out of a the ↵Daniel Moody2022-06-065-0/+58
| | | | | | | | | | | | | | | | SCosncript dir
* | | | Fix PR review issuesMats Wichmann2022-06-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove leftover debugging debris. Fix sider complaint Signed-off-by: Mats Wichmann <mats@linux.com>
* | | | Fortran vairants now include FORTRANCOMMONFLAGSMats Wichmann2022-06-167-152/+255
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The documentation suggested $FORTRANFLAGS was included in the build lines for all variants, but it was not. Turns out the test suite quite explicitly checks that FORTRANFLAGS doesn't leak through to other variants, so instead define a new FORTRANCOMMONFLAGS to serve the purpose of a flag that applies to all variants. Assorted cleanup. And f-strings. Fixes #2257 Signed-off-by: Mats Wichmann <mats@linux.com>
* | | Merge pull request #4178 from bdbaddog/trivial_fortran_cleanupWilliam Deegan2022-06-151-4/+2
|\ \ \ | | | | | | | | trivial fortran cleanups.
| * | | trivial cleanups. Change internal flag in internal methods from 0/1 to ↵William Deegan2022-06-151-4/+2
| | |/ | |/| | | | | | | True/False for support_module
* | | added message to test failure, and removed unneeded import SCons in fixture ↵William Deegan2022-06-152-4/+3
| | | | | | | | | | | | sconstruct
* | | update changes/release notes, and add mtime check to determinism testDaniel Moody2022-06-151-0/+5
| | |
* | | Merge branch 'master' into ninja_determinismWilliam Deegan2022-06-146-2/+223
|\ \ \ | |/ /
| * | Fix testWilliam Deegan2022-06-141-1/+2
| | |
| * | Fixed some typos. Added skip_test() if psutil is not present for new test. ↵William Deegan2022-06-141-4/+8
| | | | | | | | | | | | Added note to CHANGES.txt/RELEASE.txt that psutil is required for the new test for this function
| * | Merge branch 'master' into ninja_exit_daemonWilliam Deegan2022-06-145-2/+139
| |\ \
| | * \ Merge branch 'master' into ninja_command_line_argsWilliam Deegan2022-06-134-1/+133
| | |\ \