Parcourir la source

removing test from Makefile.am

Stasik0 il y a 11 ans
Parent
commit
bc89afe6ea
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 2 2
      Makefile.am
  2. 1 1
      tests/check_stack.c

+ 2 - 2
Makefile.am

@@ -6,10 +6,10 @@ AM_CFLAGS = -O2
 endif
 
 if HAVE_CHECK
-    SUBS=src tool . tests .
+    SUBS=src tests .
 
 else 
-    SUBS=src tool .
+    SUBS=src .
 endif
 
 SUBDIRS = $(SUBS) examples/src	

+ 1 - 1
tests/check_stack.c

@@ -641,7 +641,7 @@ START_TEST(encode_builtInDatatypeArray_test_String)
 			0xFF, 0xFF, 0xFF, 0xFF		// s2.Length
 	};
 
-	encode_builtInDatatypeArray(array, noElements, BYTE_STRING, &pos, buf);
+	encoder_encodeBuiltInDatatypeArray(array, noElements, BYTE_STRING, &pos, buf);
 
 	// check size
 	ck_assert_int_eq(pos, 4 + 4 + 6 + 4);