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

Commit 70c1f09

Browse files
committed
Merge pull request #2455 from mmitche/glob-star-syntax
Enable globstar in run-test.sh
2 parents 484f4ba + f0ce38a commit 70c1f09

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
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

src/System.Xml.ReaderWriter/tests/Writers/XmlWriterApi/System.Xml.RW.XmlWriterApi.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{E6DAD59F-7CB7-4E70-B4C5-FCCBC3376EDE}</ProjectGuid>
88
<OutputType>Library</OutputType>
9-
<AssemblyName>System.Xml.RW.XmlWriterApiTests</AssemblyName>
9+
<AssemblyName>System.Xml.RW.XmlWriterApi.Tests</AssemblyName>
1010
<RootNamespace>XmlWriterAPI.Test</RootNamespace>
1111
</PropertyGroup>
1212
<!-- Default configurations to help VS understand the configurations -->

src/System.Xml.ReaderWriter/tests/XmlReader/ReadContentAs/System.Xml.RW.XmlReader.ReadContentAs.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{DA6A9B7F-F311-49A4-8BBE-42EF3152C37B}</ProjectGuid>
88
<OutputType>Library</OutputType>
9-
<AssemblyName>System.Xml.RW.XmlReaderReadContentAs.Tests</AssemblyName>
9+
<AssemblyName>System.Xml.RW.XmlReader.ReadContentAs.Tests</AssemblyName>
1010
<RootNamespace>XMLTests.ReaderWriter.ReadContentTests</RootNamespace>
1111
</PropertyGroup>
1212
<!-- Default configurations to help VS understand the configurations -->

0 commit comments

Comments
 (0)