├── .travis.yml ├── LICENCE ├── Makefile ├── README.md ├── bin └── gvp ├── configure ├── gpm_install.gif └── test ├── assert.sh ├── init_in_and_out_test.sh └── run_all_tests.sh /.travis.yml: -------------------------------------------------------------------------------- 1 | language: bash 2 | sudo: false 3 | script: make test 4 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/README.md -------------------------------------------------------------------------------- /bin/gvp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/bin/gvp -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/configure -------------------------------------------------------------------------------- /gpm_install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/gpm_install.gif -------------------------------------------------------------------------------- /test/assert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/test/assert.sh -------------------------------------------------------------------------------- /test/init_in_and_out_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/test/init_in_and_out_test.sh -------------------------------------------------------------------------------- /test/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pote/gvp/HEAD/test/run_all_tests.sh --------------------------------------------------------------------------------