Compare commits

..

No commits in common. "v2.111.0-beta.1" and "master" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
dc: [ dmd-latest, ldc-latest ]
name: ${{ matrix.os }}, ${{ matrix.dc }}
runs-on: ${{ matrix.os }}

View file

@ -140,12 +140,12 @@ void runCompilerAgnosticTests(string rdmdApp, string defaultCompiler, string mod
/* Test help string output when no arguments passed. */
auto res = execute([rdmdApp]);
enforce(res.status == 1, res.output);
enforce(res.output.canFind("Usage: rdmd [RDMD AND DMD OPTIONS...] program [PROGRAM OPTIONS...]"));
enforce(res.output.canFind("Usage: rdmd [RDMD AND DMD OPTIONS]... program [PROGRAM OPTIONS]..."));
/* Test --help. */
res = execute([rdmdApp, "--help"]);
enforce(res.status == 0, res.output);
enforce(res.output.canFind("Usage: rdmd [RDMD AND DMD OPTIONS...] program [PROGRAM OPTIONS...]"));
enforce(res.output.canFind("Usage: rdmd [RDMD AND DMD OPTIONS]... program [PROGRAM OPTIONS]..."));
string helpText = res.output;