Skip to content

Commit 8d6f783

Browse files
foo7
1 parent 92ee790 commit 8d6f783

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pkg/tests/runner_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -727,6 +727,9 @@ func TestGlobalErr(t *testing.T) {
727727
}
728728

729729
func TestContextArg(t *testing.T) {
730+
if runtime.GOOS == "windows" {
731+
t.Skip()
732+
}
730733
runner := tester.NewRunner(t)
731734
x, err := runner.Run("", `{
732735
"file": "foo.db"

pkg/tests/testdata/TestContextArg/test.gpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ This is from tool
88
name: fromcontext
99
args: first: an arg
1010

11-
#!sys.echo
12-
this is from context -- ${first}
11+
#!/bin/bash
12+
echo this is from context -- ${first}

0 commit comments

Comments
 (0)