forked from koding/koding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-kd.sh
More file actions
executable file
·27 lines (21 loc) · 758 Bytes
/
Copy pathtest-kd.sh
File metadata and controls
executable file
·27 lines (21 loc) · 758 Bytes
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
#!/bin/bash
set -euo pipefail
go test -v koding/klient/remote... \
koding/klientctl... \
koding/mountcli...
# koding/fuseklient/transport...
# Manually testing individual functions because Fuse is having issues
# on wercker currently.
cat << EOF
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!Partial fuseklient tests run!!!
TODO: Remove -run whitelists once
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
EOF
go test -v -run TestDir koding/fuseklient...
go test -v -run TestNode koding/fuseklient...
go test -v -run TestContentReadWriter koding/fuseklient...
go test -v -run TestEntry koding/fuseklient...
go test -v -run TestFakeTransport koding/fuseklient...
go test -v -run TestErrorTransport koding/fuseklient...
go test -v -run TestFindWatcher koding/fuseklient...