From bb460d4f1e241934a66888cf65c9367e0b57d965 Mon Sep 17 00:00:00 2001
From: Giovanni Bussi <giovanni.bussi@gmail.com>
Date: Tue, 17 Oct 2017 00:17:44 +0200
Subject: [PATCH] Fixed a couple of tests

There was some "return 1". Now that exit code is checked, this would
have triggered an error
---
 regtest/basic/rt-make-4/main.cpp  | 2 +-
 regtest/basic/rt65-rmsd2/test.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/regtest/basic/rt-make-4/main.cpp b/regtest/basic/rt-make-4/main.cpp
index 7dc76d28d..8ccfd73f9 100644
--- a/regtest/basic/rt-make-4/main.cpp
+++ b/regtest/basic/rt-make-4/main.cpp
@@ -40,5 +40,5 @@ int main () {
   }
   out.close();
 
-  return 1;
+  return 0;
 }
diff --git a/regtest/basic/rt65-rmsd2/test.cpp b/regtest/basic/rt65-rmsd2/test.cpp
index 65c368bfc..662c789f6 100644
--- a/regtest/basic/rt65-rmsd2/test.cpp
+++ b/regtest/basic/rt65-rmsd2/test.cpp
@@ -614,5 +614,5 @@ int main(int argc, char* argv[]) {
   } 
 
 
-  return 1;
+  return 0;
 }
-- 
GitLab