Merge pull request #7378 from mdedetrich/remove-invalid-test

Remove invalid test
This commit is contained in:
eugene yokota 2023-09-13 21:40:04 -04:00 committed by GitHub
commit 8f6de15dd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 24 deletions

View File

@ -186,7 +186,6 @@ jobs:
shell: bash
run: |
# test building sbtn on Windows
sbt "commandProj/testOnly xsbt.IPCSpec"
sbt "-Dsbt.io.virtual=false" nativeImage
# test launcher script
echo build using JDK 8, test using JDK 8, on Windows

View File

@ -1,23 +0,0 @@
/*
* sbt
* Copyright 2011 - 2018, Lightbend, Inc.
* Copyright 2008 - 2010, Mark Harrah
* Licensed under Apache License 2.0 (see LICENSE)
*/
package xsbt
import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.should.Matchers._
class IPCSpec extends AnyFlatSpec {
"server" should "allow same number of connections as determined in socket backlog" in {
noException should be thrownBy {
val server = IPC.unmanagedServer
(1 until IPC.socketBacklog + 1).foreach { _ =>
IPC.client(server.port)(identity)
}
server.close()
}
}
}