mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
d0be34c227
This has created a lot of //go:build lines.
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
//go:build !windows && !plan9
|
|
// +build !windows,!plan9
|
|
|
|
package eval_test
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
. "src.elv.sh/pkg/eval/evaltest"
|
|
"src.elv.sh/pkg/testutil"
|
|
)
|
|
|
|
func TestPipeline_ReaderGone_Unix(t *testing.T) {
|
|
Test(t,
|
|
// External commands terminated by SIGPIPE due to reader exiting early
|
|
// raise ReaderGone, which is then suppressed.
|
|
That("yes | true").DoesNothing(),
|
|
That(
|
|
"var reached = $false",
|
|
"{ yes; reached = $true } | true",
|
|
"put $reached",
|
|
).Puts(false),
|
|
)
|
|
}
|
|
|
|
func TestCommand_Unix(t *testing.T) {
|
|
testutil.InTempDir(t)
|
|
|
|
mustWriteScript("foo", "#!/bin/sh", "echo foo")
|
|
mustWriteScript("lorem/ipsum", "#!/bin/sh", "echo lorem ipsum")
|
|
|
|
Test(t,
|
|
// External commands.
|
|
That("./foo").Prints("foo\n"),
|
|
That("lorem/ipsum").Prints("lorem ipsum\n"),
|
|
// Using the explicit e: namespace.
|
|
That("e:./foo").Prints("foo\n"),
|
|
// Names of external commands may be built dynamically.
|
|
That("x = ipsum", "lorem/$x").Prints("lorem ipsum\n"),
|
|
// Using new FD as destination in external commands.
|
|
// Regression test against b.elv.sh/788.
|
|
That("./foo 5</dev/null").Prints("foo\n"),
|
|
)
|
|
}
|
|
|
|
func mustWriteScript(name string, lines ...string) {
|
|
testutil.MustWriteFile(name, strings.Join(lines, "\n"))
|
|
testutil.Must(os.Chmod(name, 0700))
|
|
}
|