forked from taskcluster/taskcluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper_posix_test.go
60 lines (51 loc) · 864 Bytes
/
helper_posix_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// +build darwin linux freebsd
package main
import (
"fmt"
"path/filepath"
)
func helloGoodbye() [][]string {
return [][]string{
{
"echo",
"hello world!",
},
{
"echo",
"goodbye world!",
},
}
}
func rawHelloGoodbye() string {
return `["echo", "hello world!"], ["echo", "goodbye world!"]`
}
func returnExitCode(exitCode uint) [][]string {
return [][]string{
{
"/bin/bash",
"-c",
fmt.Sprintf("exit %d", exitCode),
},
}
}
func copyTestdataFile(path string) [][]string {
return copyTestdataFileTo(path, path)
}
func copyTestdataFileTo(src, dest string) [][]string {
sourcePath := filepath.Join(testdataDir, src)
return [][]string{
{
"mkdir",
"-p",
filepath.Dir(dest),
},
{
"cp",
sourcePath,
dest,
},
}
}
func singleCommandNoArgs(command string) [][]string {
return [][]string{{command}}
}