├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── self_test ├── autodetection_cli │ ├── autodetection_cli.config.yaml │ ├── autodetection_cli.in │ ├── files │ │ ├── test1.in │ │ ├── test1.out │ │ ├── test2.in │ │ ├── test2.out │ │ ├── test3.in │ │ └── test3.out │ ├── someprogram.sh │ └── test.out ├── basic_usage_cli │ ├── basic_usage_cli.config.yaml │ ├── basic_usage_cli.in │ ├── files │ │ ├── test1.in │ │ ├── test1.out │ │ ├── test2.in │ │ ├── test2.out │ │ ├── test3.in │ │ └── test3.out │ └── test.out ├── basic_usage_yaml │ ├── basic_usage_yaml.config.yaml │ ├── basic_usage_yaml.in │ ├── files │ │ ├── test1.in │ │ ├── test1.out │ │ ├── test2.in │ │ ├── test2.out │ │ ├── test3.in │ │ └── test3.out │ ├── test.out │ └── utest.yaml └── utest.yaml ├── static └── screenshots │ └── screenshot1.png ├── tools └── crlf.sh ├── utest.bat └── utest.sh /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | utest.yaml 3 | static 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/package.json -------------------------------------------------------------------------------- /self_test/autodetection_cli/autodetection_cli.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/autodetection_cli/autodetection_cli.config.yaml -------------------------------------------------------------------------------- /self_test/autodetection_cli/autodetection_cli.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /self_test/autodetection_cli/files/test1.in: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /self_test/autodetection_cli/files/test1.out: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /self_test/autodetection_cli/files/test2.in: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /self_test/autodetection_cli/files/test2.out: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /self_test/autodetection_cli/files/test3.in: -------------------------------------------------------------------------------- 1 | sometest3 -------------------------------------------------------------------------------- /self_test/autodetection_cli/files/test3.out: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /self_test/autodetection_cli/someprogram.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | printf "123\n" -------------------------------------------------------------------------------- /self_test/autodetection_cli/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/autodetection_cli/test.out -------------------------------------------------------------------------------- /self_test/basic_usage_cli/basic_usage_cli.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/basic_usage_cli/basic_usage_cli.config.yaml -------------------------------------------------------------------------------- /self_test/basic_usage_cli/basic_usage_cli.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /self_test/basic_usage_cli/files/test1.in: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /self_test/basic_usage_cli/files/test1.out: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /self_test/basic_usage_cli/files/test2.in: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /self_test/basic_usage_cli/files/test2.out: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /self_test/basic_usage_cli/files/test3.in: -------------------------------------------------------------------------------- 1 | sometest3 -------------------------------------------------------------------------------- /self_test/basic_usage_cli/files/test3.out: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /self_test/basic_usage_cli/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/basic_usage_cli/test.out -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/basic_usage_yaml.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/basic_usage_yaml/basic_usage_yaml.config.yaml -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/basic_usage_yaml.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/files/test1.in: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/files/test1.out: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/files/test2.in: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/files/test2.out: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/files/test3.in: -------------------------------------------------------------------------------- 1 | sometest3 -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/files/test3.out: -------------------------------------------------------------------------------- 1 | sometest3 -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/basic_usage_yaml/test.out -------------------------------------------------------------------------------- /self_test/basic_usage_yaml/utest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/basic_usage_yaml/utest.yaml -------------------------------------------------------------------------------- /self_test/utest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/self_test/utest.yaml -------------------------------------------------------------------------------- /static/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/static/screenshots/screenshot1.png -------------------------------------------------------------------------------- /tools/crlf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/tools/crlf.sh -------------------------------------------------------------------------------- /utest.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | bash utest.sh %* -------------------------------------------------------------------------------- /utest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/styczynski/bash-universal-tester/HEAD/utest.sh --------------------------------------------------------------------------------