Skip to content

Commit

Permalink
try again to make sure fail
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu committed Feb 11, 2014
1 parent 635a36a commit 325f014
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![Build Status](https://travis-ci.org/liuliu/ccv.png?branch=unstable)](https://travis-ci.org/liuliu/ccv)

Intro
=====

[![Build Status](https://travis-ci.org/liuliu/ccv.png?branch=unstable)](https://travis-ci.org/liuliu/ccv)

Around 2010, when Lian and I was working on our gesture recognition demo, out
of the frustration to abstract redundant image preprocessing operations into a
set of clean and concise functions, I started to consider moving away from the
Expand Down
2 changes: 1 addition & 1 deletion test/functional/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CFLAGS := -O3 -Wall -I"../../lib" -I"../" $(CFLAGS)
TARGETS = algebra.tests util.tests numeric.tests basic.tests memory.tests io.tests transform.tests convnet.tests

test: all
@for test in $(TARGETS) ; do ./"$$test" ; done
@for test in $(TARGETS) ; do ./"$$test" || exit ; done

all: $(TARGETS)

Expand Down
2 changes: 1 addition & 1 deletion test/functional/util.tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

TEST_CASE("type size macro")
{
REQUIRE_EQ(CCV_GET_DATA_TYPE_SIZE(CCV_8U), 1, "CCV_8U should have size 1");
REQUIRE_EQ(CCV_GET_DATA_TYPE_SIZE(CCV_8U), 2, "CCV_8U should have size 1");
REQUIRE_EQ(CCV_GET_DATA_TYPE_SIZE(CCV_32S), 4, "CCV_32S should have size 4");
REQUIRE_EQ(CCV_GET_DATA_TYPE_SIZE(CCV_32F), 4, "CCV_32F should have size 4");
REQUIRE_EQ(CCV_GET_DATA_TYPE_SIZE(CCV_64S), 8, "CCV_64S should have size 8");
Expand Down
2 changes: 1 addition & 1 deletion test/regression/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CFLAGS := -O3 -Wall -I"../../lib" -I"../" $(CFLAGS)
TARGETS = defects.l0.1.tests

test: all
@for test in $(TARGETS) ; do ./"$$test" ; done
@for test in $(TARGETS) ; do ./"$$test" || exit ; done

all: $(TARGETS)

Expand Down

0 comments on commit 325f014

Please sign in to comment.