Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 0b79876

Browse files
committed
Enable globstar in run-test.sh
Globstar is not enabled by default, and a recent commit attempting to increase the number of directories being run for the Linux build actually skipped a bunch of stuff. Enable globstar in the script (this is local) to fix. Mark DriveLetter_Unix as a failing test, which appears to have snuck in in the meantime
1 parent eacdd5d commit 0b79876

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

run-test.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
22

3+
# Enable globstar for the purposes of directory evaluation
4+
shopt -s globstar
5+
36
wait_on_pids()
47
{
58
# Wait on the last processes

src/System.IO.FileSystem/tests/Directory/CreateDirectory.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ public void DriveLetter_Windows()
347347

348348
[Fact]
349349
[PlatformSpecific(PlatformID.AnyUnix)]
350+
[ActiveIssue(2459)]
350351
public void DriveLetter_Unix()
351352
{
352353
// On Unix, there's no special casing for drive letters, which are valid file names

0 commit comments

Comments
 (0)