From 02840f06343da9d179b08e463531dc4a4dc3c7c5 Mon Sep 17 00:00:00 2001 From: Guillaume BIENKOWSKI Date: Mon, 26 Jan 2015 11:57:30 +0100 Subject: [PATCH] Test for failure of tests to see if CI works fine --- KifTests/ChatTester.m | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/KifTests/ChatTester.m b/KifTests/ChatTester.m index 66e200519..824fbd89f 100644 --- a/KifTests/ChatTester.m +++ b/KifTests/ChatTester.m @@ -98,5 +98,14 @@ [self goBackFromChat]; } +-(void)testShouldFail { + [tester fail]; +} + +-(void)testShouldSegfault { + int* toto = (int*)0; + *toto = 1; +} + @end