--- /dev/null
+#!/usr/bin/env python3
+
+""" Run the longer tests, that are too long for unittests
+
+Currently, there are 2 such tests:
+- test_volume_size_accuracy
+- test_volume_split (runs forever)
+
+.. codeauthor:: Intra2net AG <info@intra2net>
+"""
+
+import sys
+
+from testing import test_volume_size_accuracy
+from testing import test_volume_split
+
+
+def main():
+ """ Main function, called when running file as script
+
+ see module doc for more info
+ """
+
+ fast_fail = False
+ print_everything = False
+
+ n_errs = test_volume_size_accuracy.run_all_tests(fast_fail,
+ print_everything)
+ if fast_fail and n_errs > 0:
+ return n_errs
+ n_errs += test_volume_split.run_forever(fast_fail, print_everything)
+
+ return n_errs
+
+
+if __name__ == '__main__':
+ sys.exit(main())