From 5407adebfd9317f06f1862b416aba71f20d14908 Mon Sep 17 00:00:00 2001 From: Flavio Poletti Date: Mon, 12 Aug 2013 18:53:41 +0200 Subject: [PATCH] added a test --- t/03/Makefile | 13 +++++++++++++ t/03/hello.sh | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 t/03/Makefile create mode 100755 t/03/hello.sh diff --git a/t/03/Makefile b/t/03/Makefile new file mode 100644 index 0000000..c5fb96c --- /dev/null +++ b/t/03/Makefile @@ -0,0 +1,13 @@ +compile: + ../../deployable --output test.pl --bundle --no-tar hello.sh + +test: check clean + +execute: + ./test.pl + +clean: + @rm -rf test.pl + +check: compile + @echo -e "\nall tests successful" diff --git a/t/03/hello.sh b/t/03/hello.sh new file mode 100755 index 0000000..2e93661 --- /dev/null +++ b/t/03/hello.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "Hello, World!" -- 2.11.4.GIT