dmd/compiler/test/dshell
The Dlang Bot 97dc44aa76
Merge pull request #16521 from kinke/rm_cruntime_dm
Get rid of obsolete `{C,Cpp}Runtime_DigitalMars` special cases

Signed-off-by: Dennis <dkorpel@users.noreply.github.com>
Signed-off-by: Nicholas Wilson <thewilsonator@users.noreply.github.com>
Merged-on-behalf-of: Nicholas Wilson <thewilsonator@users.noreply.github.com>
2024-05-25 22:14:39 +02:00
..
extra-files Get rid of DMC workaround for the dll_cxx dshell test 2024-05-25 21:01:20 +02:00
imports
cpp_header_gen.d Get rid of obsolete DMC special cases 2024-05-25 19:34:44 +02:00
defaults.d Revise remaining 32{omf,mscoff} usages 2024-05-25 16:35:11 +02:00
depsprot.d
dll.d Revise remaining 32{omf,mscoff} usages 2024-05-25 16:35:11 +02:00
dll_cxx.d Merge pull request #16521 from kinke/rm_cruntime_dm 2024-05-25 22:14:39 +02:00
dwarf.d
issue20444_SOURCE_DATE_EPOCH.d
issue22804.d
issue22816.d
issue22817.d
issue24111.d Fix Bugzilla issue 24111 - [ImportC] fatal error C1034: stdio.h: no include path set (#16248) 2024-03-03 12:35:04 +08:00
linker_flag_with_spaces.d Revise remaining 32{omf,mscoff} usages 2024-05-25 16:35:11 +02:00
README.md
sameenv.d
test6952.d
test9377.d
test_shared.d

Scripted tests

Each D file is treated like a shell scripts which executes one or multiple complex tests. The test result is indicated by the scripts exit code,

 0                the test was successful
 dshell.DISABLED  the test was skipped based on the environment
 *                the test failed

Purpose

These scripts are intended to supports tests which cannot be implemented in any other test category. For example, this test verifies that the process environment is propagated correctly to an executable run by dmd -run.

This can also be used to aggregate several such test cases into a new category (e.g. as done for DWARF debug info generation).

Remarks

Scripts should prefer the following wrappers defined in the dshell module instead of the plain Phobos functions s.t. the test runner can issue a proper log on failure.

Note that dshell tests require additional code and linking another executable, so they should be the last resort if a the test setup cannot be represented in any other test category.

Refer to test/README.md for general information and the test guidelines.