]> git.saurik.com Git - apt.git/blobdiff - test/libapt/assert.h
tests: install --no-install-recommends and stunnel4 for travis
[apt.git] / test / libapt / assert.h
index fdf6740c6b43f055c87486440cbd8b0c254f6e6c..113c057ede9a73f902ed4342f46244ce907638ef 100644 (file)
@@ -1,4 +1,5 @@
 #include <iostream>
+#include <cstdlib>
 
 #define equals(x,y) assertEquals(y, x, __LINE__)
 #define equalsNot(x,y) assertEqualsNot(y, x, __LINE__)
@@ -6,6 +7,7 @@
 template < typename X, typename Y >
 void OutputAssertEqual(X expect, char const* compare, Y get, unsigned long const &line) {
        std::cerr << "Test FAILED: »" << expect << "« " << compare << " »" << get << "« at line " << line << std::endl;
+       std::exit(EXIT_FAILURE);
 }
 
 template < typename X, typename Y >