├── vendor ├── github.com │ ├── codegangsta │ │ └── cli │ │ │ ├── .gitignore │ │ │ ├── autocomplete │ │ │ ├── zsh_autocomplete │ │ │ └── bash_autocomplete │ │ │ ├── altsrc │ │ │ ├── helpers_test.go │ │ │ └── input_source_context.go │ │ │ ├── appveyor.yml │ │ │ ├── .travis.yml │ │ │ ├── cli.go │ │ │ └── helpers_test.go │ ├── smartystreets │ │ ├── goconvey │ │ │ ├── doc_test.go │ │ │ ├── convey │ │ │ │ ├── gotest │ │ │ │ │ ├── doc_test.go │ │ │ │ │ └── utils.go │ │ │ │ ├── reporting │ │ │ │ │ ├── reporting.goconvey │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── console.go │ │ │ │ │ └── gotest.go │ │ │ │ ├── convey.goconvey │ │ │ │ └── nilReporter.go │ │ │ ├── web │ │ │ │ ├── server │ │ │ │ │ ├── contract │ │ │ │ │ │ ├── doc_test.go │ │ │ │ │ │ └── contracts.go │ │ │ │ │ ├── api │ │ │ │ │ │ └── api.goconvey │ │ │ │ │ ├── messaging │ │ │ │ │ │ └── doc_test.go │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── parser.goconvey │ │ │ │ │ │ └── parser.go │ │ │ │ │ ├── executor │ │ │ │ │ │ ├── executor.goconvey │ │ │ │ │ │ └── contract.go │ │ │ │ │ ├── system │ │ │ │ │ │ └── system.goconvey │ │ │ │ │ └── watch │ │ │ │ │ │ ├── integration_testing │ │ │ │ │ │ ├── doc_test.go │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── stuff.go │ │ │ │ │ │ │ ├── sub.goconvey │ │ │ │ │ │ │ └── stuff_test.go │ │ │ │ │ │ └── main.go │ │ │ │ │ │ └── watch.goconvey │ │ │ │ └── client │ │ │ │ │ ├── resources │ │ │ │ │ ├── js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── jquery.js.url │ │ │ │ │ │ │ ├── jquery-ui.js.url │ │ │ │ │ │ │ ├── moment.js.url │ │ │ │ │ │ │ ├── markup.js.url │ │ │ │ │ │ │ ├── jquery.tipsy.js.url │ │ │ │ │ │ │ ├── taboverride.js.url │ │ │ │ │ │ │ └── jquery.pretty-text-diff.js.url │ │ │ │ │ │ └── config.js │ │ │ │ │ ├── ico │ │ │ │ │ │ ├── goconvey-ok.ico │ │ │ │ │ │ ├── goconvey-fail.ico │ │ │ │ │ │ ├── goconvey-panic.ico │ │ │ │ │ │ └── goconvey-buildfail.ico │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── Oswald │ │ │ │ │ │ └── Oswald-Regular.ttf │ │ │ │ │ │ ├── Open_Sans │ │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ │ │ └── OpenSans-LightItalic.ttf │ │ │ │ │ │ ├── Orbitron │ │ │ │ │ │ └── Orbitron-Regular.ttf │ │ │ │ │ │ └── FontAwesome │ │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ └── favicon.ico │ │ │ ├── .gitignore │ │ │ ├── dependencies.go │ │ │ ├── .travis.yml │ │ │ └── examples │ │ │ │ ├── doc.go │ │ │ │ ├── examples.goconvey │ │ │ │ └── simple_example_test.go │ │ └── assertions │ │ │ ├── .gitignore │ │ │ ├── internal │ │ │ ├── oglemock │ │ │ │ ├── .gitignore │ │ │ │ ├── createmock │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── golden.unknown_package │ │ │ │ │ │ ├── golden.unknown_interface │ │ │ │ │ │ ├── golden.no_package │ │ │ │ │ │ ├── golden.no_interfaces │ │ │ │ │ │ └── gcs │ │ │ │ │ │ └── bucket.go │ │ │ │ ├── .travis.yml │ │ │ │ └── sample │ │ │ │ │ └── README.markdown │ │ │ ├── ogletest │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── srcutil │ │ │ │ │ └── docs.go │ │ │ │ └── test_cases │ │ │ │ │ ├── golden.no_cases_test │ │ │ │ │ ├── golden.unexported_test │ │ │ │ │ ├── golden.stop_test │ │ │ │ │ ├── golden.run_twice_test │ │ │ │ │ ├── golden.passing_test │ │ │ │ │ ├── golden.filtered_test │ │ │ │ │ └── golden.mock_test │ │ │ ├── oglematchers │ │ │ │ ├── .gitignore │ │ │ │ └── .travis.yml │ │ │ ├── reqtrace │ │ │ │ └── .gitignore │ │ │ ├── go-render │ │ │ │ ├── WATCHLISTS │ │ │ │ └── .travis.yml │ │ │ └── Makefile │ │ │ ├── assertions.goconvey │ │ │ ├── .travis.yml │ │ │ └── filter.go │ ├── kr │ │ └── pty │ │ │ ├── .gitignore │ │ │ ├── types.go │ │ │ ├── ztypes_386.go │ │ │ ├── ztypes_arm.go │ │ │ ├── ztypes_amd64.go │ │ │ ├── ztypes_arm64.go │ │ │ ├── ztypes_ppc64.go │ │ │ ├── ztypes_s390x.go │ │ │ ├── ztypes_ppc64le.go │ │ │ ├── pty_unsupported.go │ │ │ ├── ioctl.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── types_freebsd.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── types_dragonfly.go │ │ │ ├── mktypes.bash │ │ │ ├── doc.go │ │ │ ├── README.md │ │ │ ├── run.go │ │ │ └── util.go │ ├── gopherjs │ │ └── gopherjs │ │ │ ├── .gitignore │ │ │ ├── tests │ │ │ ├── otherpkg │ │ │ │ └── otherpkg.go │ │ │ ├── doc.go │ │ │ ├── vendor │ │ │ │ └── vendored │ │ │ │ │ └── vendored.go │ │ │ ├── testdata │ │ │ │ ├── time_inexternalization.out │ │ │ │ └── time_inexternalization.go │ │ │ ├── main │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ │ ├── gorepo_test.go │ │ │ ├── deferblock_test.go │ │ │ └── lowlevel_test.go │ │ │ ├── compiler │ │ │ ├── natives │ │ │ │ ├── src │ │ │ │ │ ├── fmt │ │ │ │ │ │ └── fmt_test.go │ │ │ │ │ ├── runtime │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── debug.go │ │ │ │ │ │ └── pprof │ │ │ │ │ │ │ └── pprof.go │ │ │ │ │ ├── math │ │ │ │ │ │ ├── rand │ │ │ │ │ │ │ └── rand_test.go │ │ │ │ │ │ └── big │ │ │ │ │ │ │ └── big_test.go │ │ │ │ │ ├── debug │ │ │ │ │ │ └── elf │ │ │ │ │ │ │ └── elf_test.go │ │ │ │ │ ├── go │ │ │ │ │ │ └── token │ │ │ │ │ │ │ └── token_test.go │ │ │ │ │ ├── bytes │ │ │ │ │ │ ├── bytes_test.go │ │ │ │ │ │ └── bytes.go │ │ │ │ │ ├── io │ │ │ │ │ │ └── io_test.go │ │ │ │ │ ├── sync │ │ │ │ │ │ ├── atomic │ │ │ │ │ │ │ └── atomic_test.go │ │ │ │ │ │ ├── sync_test.go │ │ │ │ │ │ ├── waitgroup.go │ │ │ │ │ │ ├── sync.go │ │ │ │ │ │ ├── pool.go │ │ │ │ │ │ └── cond.go │ │ │ │ │ ├── encoding │ │ │ │ │ │ └── json │ │ │ │ │ │ │ └── json.go │ │ │ │ │ ├── regexp │ │ │ │ │ │ └── regexp_test.go │ │ │ │ │ ├── crypto │ │ │ │ │ │ └── x509 │ │ │ │ │ │ │ ├── x509.go │ │ │ │ │ │ │ └── x509_test.go │ │ │ │ │ ├── os │ │ │ │ │ │ └── os.go │ │ │ │ │ ├── unicode │ │ │ │ │ │ └── unicode.go │ │ │ │ │ ├── reflect │ │ │ │ │ │ └── reflect_test.go │ │ │ │ │ └── net │ │ │ │ │ │ └── net.go │ │ │ │ ├── doc.go │ │ │ │ └── fs.go │ │ │ ├── version_check.go │ │ │ ├── vendor │ │ │ │ └── vendor.json │ │ │ ├── typesutil │ │ │ │ └── typesutil.go │ │ │ ├── analysis │ │ │ │ ├── break.go │ │ │ │ ├── sideeffect.go │ │ │ │ └── bool.go │ │ │ └── filter │ │ │ │ └── incdecstmt.go │ │ │ └── node-syscall │ │ │ └── binding.gyp │ ├── moul │ │ └── http2curl │ │ │ ├── vendor │ │ │ └── github.com │ │ │ │ ├── smartystreets │ │ │ │ ├── assertions │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── oglemock │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── createmock │ │ │ │ │ │ │ │ └── test_cases │ │ │ │ │ │ │ │ │ ├── golden.unknown_package │ │ │ │ │ │ │ │ │ ├── golden.unknown_interface │ │ │ │ │ │ │ │ │ ├── golden.no_package │ │ │ │ │ │ │ │ │ └── golden.no_interfaces │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ └── sample │ │ │ │ │ │ │ │ └── README.markdown │ │ │ │ │ │ ├── ogletest │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── srcutil │ │ │ │ │ │ │ │ └── docs.go │ │ │ │ │ │ │ └── test_cases │ │ │ │ │ │ │ │ ├── golden.no_cases_test │ │ │ │ │ │ │ │ ├── golden.unexported_test │ │ │ │ │ │ │ │ ├── golden.stop_test │ │ │ │ │ │ │ │ ├── golden.run_twice_test │ │ │ │ │ │ │ │ ├── golden.passing_test │ │ │ │ │ │ │ │ ├── golden.filtered_test │ │ │ │ │ │ │ │ └── golden.mock_test │ │ │ │ │ │ ├── oglematchers │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ │ ├── reqtrace │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── assertions.goconvey │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── filter.go │ │ │ │ └── goconvey │ │ │ │ │ └── convey │ │ │ │ │ ├── reporting │ │ │ │ │ ├── reporting.goconvey │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── console.go │ │ │ │ │ └── gotest.go │ │ │ │ │ ├── convey.goconvey │ │ │ │ │ ├── nilReporter.go │ │ │ │ │ └── gotest │ │ │ │ │ └── utils.go │ │ │ │ └── jtolds │ │ │ │ └── gls │ │ │ │ ├── gen_sym.go │ │ │ │ └── id_pool.go │ │ │ ├── Godeps │ │ │ ├── Readme │ │ │ └── Godeps.json │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── flynn │ │ └── go-shlex │ │ │ ├── README.md │ │ │ └── Makefile │ ├── parnurzeal │ │ └── gorequest │ │ │ ├── logger.go │ │ │ ├── .travis.yml │ │ │ └── .gitignore │ ├── pkg │ │ └── errors │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ └── appveyor.yml │ ├── jtolds │ │ └── gls │ │ │ ├── gen_sym.go │ │ │ └── id_pool.go │ ├── apex │ │ └── log │ │ │ ├── doc.go │ │ │ ├── handlers │ │ │ ├── discard │ │ │ │ └── discard.go │ │ │ ├── memory │ │ │ │ └── memory.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── multi │ │ │ │ └── multi.go │ │ │ └── logfmt │ │ │ │ └── logfmt.go │ │ │ ├── _examples │ │ │ ├── trace │ │ │ │ └── trace.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── logfmt │ │ │ │ └── logfmt.go │ │ │ ├── kinesis │ │ │ │ └── kinesis.go │ │ │ ├── text │ │ │ │ └── text.go │ │ │ ├── multi │ │ │ │ └── multi.go │ │ │ └── cli │ │ │ │ └── cli.go │ │ │ ├── interface.go │ │ │ ├── Readme.md │ │ │ └── levels_test.go │ └── mitchellh │ │ └── go-homedir │ │ └── README.md └── golang.org │ └── x │ ├── net │ ├── codereview.cfg │ ├── http2 │ │ ├── .gitignore │ │ ├── h2demo │ │ │ ├── rootCA.srl │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── README │ │ ├── Makefile │ │ ├── errors_test.go │ │ ├── not_go18.go │ │ ├── README │ │ └── gotrack_test.go │ ├── .gitignore │ ├── html │ │ ├── charset │ │ │ └── testdata │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ └── README │ │ └── testdata │ │ │ └── webkit │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ └── webkit01.dat │ │ │ ├── adoption02.dat │ │ │ ├── inbody01.dat │ │ │ └── isindex.dat │ ├── README │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── route │ │ ├── syscall.s │ │ ├── message_darwin_test.go │ │ ├── interface_announce.go │ │ ├── route_classic.go │ │ ├── interface_multicast.go │ │ ├── route_openbsd.go │ │ ├── sys.go │ │ └── syscall.go │ ├── ipv4 │ │ ├── sys_linux_386.s │ │ ├── sys_solaris_amd64.s │ │ ├── sockopt_stub.go │ │ ├── sys_stub.go │ │ ├── bpfopt_stub.go │ │ ├── sockopt_asmreqn_stub.go │ │ ├── sockopt_ssmreq_stub.go │ │ ├── icmp_stub.go │ │ ├── payload.go │ │ ├── control_stub.go │ │ ├── icmp_linux.go │ │ ├── syscall_windows.go │ │ ├── sockopt_asmreq_stub.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ ├── control_windows.go │ │ ├── zsys_dragonfly.go │ │ ├── bpfopt_linux.go │ │ ├── genericopt_stub.go │ │ ├── syscall_unix.go │ │ └── syscall_linux_386.go │ ├── ipv6 │ │ ├── sys_linux_386.s │ │ ├── sys_solaris_amd64.s │ │ ├── sys_stub.go │ │ ├── sockopt_stub.go │ │ ├── bpfopt_stub.go │ │ ├── icmp_stub.go │ │ ├── sockopt_ssmreq_stub.go │ │ ├── payload.go │ │ ├── icmp_windows.go │ │ ├── control_stub.go │ │ ├── syscall_windows.go │ │ ├── sockopt_asmreq_posix.go │ │ ├── icmp_linux.go │ │ ├── mocktransponder_test.go │ │ ├── icmp_solaris.go │ │ ├── icmp_bsd.go │ │ ├── control_windows.go │ │ ├── bpfopt_linux.go │ │ ├── syscall_unix.go │ │ ├── genericopt_stub.go │ │ └── syscall_linux_386.go │ ├── icmp │ │ ├── sys_freebsd.go │ │ ├── helper.go │ │ └── ipv6.go │ ├── lif │ │ ├── sys_solaris_amd64.s │ │ └── syscall.go │ ├── webdav │ │ ├── file_go1.7.go │ │ ├── file_go1.6.go │ │ └── internal │ │ │ └── xml │ │ │ └── README │ ├── .gitattributes │ ├── internal │ │ ├── nettest │ │ │ ├── helper_nobsd.go │ │ │ ├── rlimit.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ └── helper_posix.go │ │ └── netreflect │ │ │ ├── socket_stub.go │ │ │ └── socket_posix.go │ ├── proxy │ │ └── direct.go │ ├── bpf │ │ └── testdata │ │ │ └── all_instructions.bpf │ ├── websocket │ │ ├── dial.go │ │ ├── examplehandler_test.go │ │ └── exampledial_test.go │ ├── context │ │ ├── ctxhttp │ │ │ └── ctxhttp_17_test.go │ │ └── withtimeout_test.go │ └── nettest │ │ └── conntest_go16.go │ └── crypto │ ├── codereview.cfg │ ├── .gitignore │ ├── ed25519 │ └── testdata │ │ └── sign.input.gz │ ├── sha3 │ ├── testdata │ │ └── keccakKats.json.deflate │ ├── xor.go │ ├── register.go │ └── xor_generic.go │ ├── README │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── ssh │ ├── test │ │ └── doc.go │ ├── terminal │ │ ├── util_bsd.go │ │ └── util_linux.go │ ├── testdata │ │ └── doc.go │ ├── tcpip_test.go │ └── doc.go │ ├── .gitattributes │ ├── curve25519 │ ├── const_amd64.s │ └── curve25519_test.go │ ├── pkcs12 │ ├── internal │ │ └── rc2 │ │ │ └── bench_test.go │ └── errors.go │ ├── poly1305 │ ├── sum_amd64.go │ └── sum_arm.go │ ├── salsa20 │ └── salsa │ │ └── salsa20_amd64.go │ └── bcrypt │ └── base64.go ├── contrib ├── docker │ ├── Makefile │ └── Dockerfile └── scaleway │ ├── .gitignore │ └── Makefile ├── renovate.json ├── resources └── ssh2docker.png ├── examples ├── always-no-password-auth-script ├── always-no-publickey-auth-script ├── always-yes-password-auth-script ├── always-yes-publickey-auth-script ├── sleep-yes-password-auth-script ├── sleep-yes-publickey-auth-script ├── always-no-publickey-auth-api ├── always-yes-password-auth-api ├── always-yes-publickey-auth-api └── always-no-password-auth-api ├── Dockerfile ├── circle.yml ├── .goxc.json ├── .gitignore ├── .travis.yml ├── pkg ├── envhelper │ └── env.go ├── ttyhelper │ └── tty.go └── sysloghandler │ └── sysloghandler.go └── auth_test.go /vendor/github.com/codegangsta/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/doc_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /contrib/docker/Makefile: -------------------------------------------------------------------------------- 1 | run-docker build-docker: 2 | $(MAKE) -C ../../ $@ 3 | -------------------------------------------------------------------------------- /contrib/scaleway/.gitignore: -------------------------------------------------------------------------------- 1 | .docker-container.built 2 | docker-rules.mk 3 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/.gitignore: -------------------------------------------------------------------------------- 1 | /node-syscall/build 2 | /node_modules 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/gotest/doc_test.go: -------------------------------------------------------------------------------- 1 | package gotest 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | /.idea 4 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/contract/doc_test.go: -------------------------------------------------------------------------------- 1 | package contract 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/api/api.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/messaging/doc_test.go: -------------------------------------------------------------------------------- 1 | package messaging 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "config:base" 4 | ], 5 | "groupName": "all" 6 | } 7 | -------------------------------------------------------------------------------- /resources/ssh2docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/resources/ssh2docker.png -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/parser/parser.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/executor/executor.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/system/system.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -short -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/doc_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/watch.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -short -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/otherpkg/otherpkg.go: -------------------------------------------------------------------------------- 1 | package otherpkg 2 | 3 | var Test float32 4 | -------------------------------------------------------------------------------- /contrib/docker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM docker 2 | 3 | ADD ./ssh2docker /ssh2docker 4 | 5 | ENTRYPOINT ["/ssh2docker"] 6 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/doc.go: -------------------------------------------------------------------------------- 1 | // Package tests contains tests for GopherJS. 2 | package tests 3 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/vendor/vendored/vendored.go: -------------------------------------------------------------------------------- 1 | package vendored 2 | 3 | var Answer = 42 4 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglemock/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/ogletest/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.js.url: -------------------------------------------------------------------------------- 1 | https://code.jquery.com/jquery-2.1.0.js 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /examples/always-no-password-auth-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "password-auth-script: $@" >&2 4 | 5 | echo '{"allowed":false}' 6 | -------------------------------------------------------------------------------- /examples/always-no-publickey-auth-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "password-auth-script: $@" >&2 4 | 5 | echo '{"allowed":false}' 6 | -------------------------------------------------------------------------------- /examples/always-yes-password-auth-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "password-auth-script: $@" >&2 4 | 5 | echo '{"allowed":true}' 6 | -------------------------------------------------------------------------------- /examples/always-yes-publickey-auth-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "password-auth-script: $@" >&2 4 | 5 | echo '{"allowed":true}' 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/testdata/golden.unknown_package: -------------------------------------------------------------------------------- 1 | Unknown package: foo/bar 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | examples/output.json 4 | web/client/reports/ 5 | /.idea -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery-ui.js.url: -------------------------------------------------------------------------------- 1 | https://code.jquery.com/ui/1.10.4/jquery-ui.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/testdata/time_inexternalization.out: -------------------------------------------------------------------------------- 1 | { S: 'externalization ok' } 2 | Sat, 29 Aug 2015 20:56:00 GMT 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/testdata/golden.unknown_interface: -------------------------------------------------------------------------------- 1 | Unknown interface: Frobnicator 2 | -------------------------------------------------------------------------------- /examples/sleep-yes-password-auth-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "password-auth-script: $@" >&2 4 | 5 | sleep 2 6 | 7 | echo '{"allowed":true}' 8 | -------------------------------------------------------------------------------- /vendor/github.com/flynn/go-shlex/README.md: -------------------------------------------------------------------------------- 1 | go-shlex is a simple lexer for go that supports shell-style quoting, 2 | commenting, and escaping. 3 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/fmt/fmt_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package fmt_test 4 | 5 | const intCount = 100 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/testdata/golden.no_package: -------------------------------------------------------------------------------- 1 | Usage: createmock [package] [interface ...] 2 | -------------------------------------------------------------------------------- /examples/sleep-yes-publickey-auth-script: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "password-auth-script: $@" >&2 4 | 5 | sleep 2 6 | 7 | echo '{"allowed":true}' 8 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/testdata/golden.no_interfaces: -------------------------------------------------------------------------------- 1 | Usage: createmock [package] [interface ...] 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/moment.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/moment/moment/2.10.2/moment.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/main/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | var mainDidRun = false 4 | 5 | func main() { 6 | mainDidRun = true 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglemock/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/ogletest/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/markup.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/adammark/Markup.js/master/src/markup.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/types.go: -------------------------------------------------------------------------------- 1 | // +build ignore 2 | 3 | package pty 4 | 5 | import "C" 6 | 7 | type ( 8 | _C_int C.int 9 | _C_uint C.uint 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | 6.out 3 | _obj/ 4 | _test/ 5 | _testmain.go 6 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/test_cases/golden.unknown_package: -------------------------------------------------------------------------------- 1 | Unknown package: foo/bar 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/dependencies.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import _ "github.com/jtolds/gls" 4 | import _ "github.com/smartystreets/assertions" 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/test_cases/golden.unknown_interface: -------------------------------------------------------------------------------- 1 | Unknown interface: Frobnicator 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/favicon.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/runtime/debug/debug.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package debug 4 | 5 | func setGCPercent(int32) int32 { 6 | return 100 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/test_cases/golden.no_package: -------------------------------------------------------------------------------- 1 | Usage: createmock [package] [interface ...] 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.tipsy.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/jaz303/tipsy/v1.0.0a/src/javascripts/jquery.tipsy.js 2 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/taboverride.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/wjbryant/taboverride/4.0.3/build/output/taboverride.js 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/node-syscall/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'syscall', 5 | 'sources': [ 'syscall.cc' ] 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglemock/createmock/test_cases/golden.no_interfaces: -------------------------------------------------------------------------------- 1 | Usage: createmock [package] [interface ...] 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go networking libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/version_check.go: -------------------------------------------------------------------------------- 1 | // +build !go1.7 2 | // +build go1.6 3 | 4 | package compiler 5 | 6 | const ___GOPHERJS_REQUIRES_GO_VERSION_1_6___ = true 7 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/assertions.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -coverpkg=github.com/smartystreets/assertions,github.com/smartystreets/assertions/internal/oglematchers -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go cryptography libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.pretty-text-diff.js.url: -------------------------------------------------------------------------------- 1 | https://raw.githubusercontent.com/arnab/jQuery.PrettyTextDiff/1.0.2/jquery.pretty-text-diff.js 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang:1.15 2 | COPY . /go/src/github.com/moul/ssh2docker 3 | WORKDIR /go/src/github.com/moul/ssh2docker 4 | RUN make 5 | ENTRYPOINT ["/go/src/github.com/moul/ssh2docker/ssh2docker"] 6 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_386.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | package pty 5 | 6 | type ( 7 | _C_int int32 8 | _C_uint uint32 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_arm.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | package pty 5 | 6 | type ( 7 | _C_int int32 8 | _C_uint uint32 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/Godeps/Readme: -------------------------------------------------------------------------------- 1 | This directory tree is generated automatically by godep. 2 | 3 | Please do not edit. 4 | 5 | See https://github.com/tools/godep for more information. 6 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_amd64.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | package pty 5 | 6 | type ( 7 | _C_int int32 8 | _C_uint uint32 9 | ) 10 | -------------------------------------------------------------------------------- /vendor/github.com/parnurzeal/gorequest/logger.go: -------------------------------------------------------------------------------- 1 | package gorequest 2 | 3 | type Logger interface { 4 | SetPrefix(string) 5 | Printf(format string, v ...interface{}) 6 | Println(v ...interface{}) 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglemock/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/ogletest/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-ok.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-ok.ico -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-fail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-fail.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/codegangsta/cli/autocomplete/zsh_autocomplete: -------------------------------------------------------------------------------- 1 | autoload -U compinit && compinit 2 | autoload -U bashcompinit && bashcompinit 3 | 4 | script_dir=$(dirname $0) 5 | source ${script_dir}/bash_autocomplete 6 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/math/rand/rand_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package rand 4 | 5 | import "testing" 6 | 7 | func TestFloat32(t *testing.T) { 8 | t.Skip("slow") 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-panic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-panic.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/assertions.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -coverpkg=github.com/smartystreets/assertions,github.com/smartystreets/assertions/internal/oglematchers -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-buildfail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-buildfail.ico -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/debug/elf/elf_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package elf 4 | 5 | import "testing" 6 | 7 | func TestNoSectionOverlaps(t *testing.T) { 8 | t.Skip("not 6l") 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/tests/main/main_test.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "testing" 4 | 5 | func TestNotRunMain(t *testing.T) { 6 | if mainDidRun { 7 | t.Error("main function did run") 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_arm64.go: -------------------------------------------------------------------------------- 1 | // Created by cgo -godefs - DO NOT EDIT 2 | // cgo -godefs types.go 3 | 4 | // +build arm64 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_ppc64.go: -------------------------------------------------------------------------------- 1 | // +build ppc64 2 | 3 | // Created by cgo -godefs - DO NOT EDIT 4 | // cgo -godefs types.go 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_s390x.go: -------------------------------------------------------------------------------- 1 | // +build s390x 2 | 3 | // Created by cgo -godefs - DO NOT EDIT 4 | // cgo -godefs types.go 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.4.3 5 | - 1.5.4 6 | - 1.6.2 7 | - 1.7.1 8 | - tip 9 | 10 | script: 11 | - go test -v ./... 12 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/go/token/token_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package token 4 | 5 | import ( 6 | "testing" 7 | ) 8 | 9 | func TestFileSetRace(t *testing.T) { 10 | t.Skip() 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pty/ztypes_ppc64le.go: -------------------------------------------------------------------------------- 1 | // +build ppc64le 2 | 3 | // Created by cgo -godefs - DO NOT EDIT 4 | // cgo -godefs types.go 5 | 6 | package pty 7 | 8 | type ( 9 | _C_int int32 10 | _C_uint uint32 11 | ) 12 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2 5 | - 1.3 6 | - 1.4 7 | - 1.5 8 | 9 | install: 10 | - go get -t ./... 11 | 12 | script: go test -v 13 | 14 | sudo: false 15 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Oswald/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Oswald/Oswald-Regular.ttf -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglemock/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/ogletest/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/.gitignore: -------------------------------------------------------------------------------- 1 | github.com-smartystreets-goconvey-web-server-integration_testing-sub.html 2 | github.com-smartystreets-goconvey-web-server-integration_testing-sub.txt -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/doc.go: -------------------------------------------------------------------------------- 1 | // Package natives provides native packages via a virtual filesystem. 2 | package natives 3 | 4 | //go:generate vfsgendev -source="github.com/gopherjs/gopherjs/compiler/natives".FS 5 | -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/compiler/natives/src/bytes/bytes_test.go: -------------------------------------------------------------------------------- 1 | // +build js 2 | 3 | package bytes_test 4 | 5 | import ( 6 | "testing" 7 | ) 8 | 9 | func TestEqualNearPageBoundary(t *testing.T) { 10 | t.Skip() 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml: -------------------------------------------------------------------------------- 1 | # Cf. http://docs.travis-ci.com/user/getting-started/ 2 | # Cf. http://docs.travis-ci.com/user/languages/go/ 3 | 4 | language: go 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Orbitron/Orbitron-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/ssh2docker/HEAD/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Orbitron/Orbitron-Regular.ttf -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/stuff.go: -------------------------------------------------------------------------------- 1 | // This file's only purpose is to provide a realistic 2 | // environment from which to run integration tests 3 | // against the Watcher. 4 | package sub 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |