From 6adc1e4a8ffebb18371e6a085f230e355ddd1118 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Mon, 20 Oct 2014 20:33:23 +0200 Subject: [PATCH] tests: Always run unit tests --- tests/normal.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/normal.pl b/tests/normal.pl index 0820030..e086236 100644 --- a/tests/normal.pl +++ b/tests/normal.pl @@ -9,6 +9,9 @@ use Digest::MD5 qw(md5_hex); my $tempDir = $ENV{'TMPDIR'} || "/tmp"; +# run unit tests +ok( system("./encfs/test 2> /dev/null") == 0, "unit tests"); + # test filesystem in standard config mode &runTests('standard');