summaryrefslogtreecommitdiffstats
path: root/test/CXX/CXX-fixture
Commit message (Collapse)AuthorAgeFilesLines
* A bit more test fixture workMats Wichmann2022-01-191-6/+6
| | | | | | | | | | | | mylex.py is now a general fixture Some of the existing fixtures had a bit more cleanup. the unneeded mylink_win32.py is dropped (only referenced by a test which already skips on win32, and the general mylink.py covers the win32 case anyway). Signed-off-by: Mats Wichmann <mats@linux.com>
* Also move CC and CXX mock compiler to fixtureMats Wichmann2022-01-182-0/+56
CC/CC.py uses a local mycc.py and CXX/CXX.py uses a local myc++.py. These could not be replaced by mycompile.py because theu usage model is different, but these two are moved to a local (to the test) fixture directory instead of being inline. Signed-off-by: Mats Wichmann <mats@linux.com>