move tests
This commit is contained in:
parent
f6e8c62f9e
commit
705346372d
8
Makefile
8
Makefile
|
@ -1,4 +1,4 @@
|
|||
test_encode_decode: test_encode_decode.c creole.c creole.h
|
||||
$(CC) test_encode_decode.c -Wall -pedantic -std=c89 -g -fopenmp -o test_encode_decode
|
||||
test_creole: test_creole.c creole.c creole.h greatest.h
|
||||
$(CC) -g test_creole.c -Wall -pedantic -std=c89 -o test_creole
|
||||
c_test/encode_decode: c_test/encode_decode.c creole.c creole.h
|
||||
$(CC) c_test/encode_decode.c -Wall -pedantic -std=c89 -g -fopenmp -o c_test/encode_decode
|
||||
c_test/creole: c_test/creole.c creole.c creole.h greatest.h
|
||||
$(CC) -g c_test/creole.c -Wall -pedantic -std=c89 -o c_test/creole
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "greatest.h"
|
||||
GREATEST_MAIN_DEFS();
|
||||
#include "creole.c"
|
||||
#include "../creole.c"
|
||||
|
||||
/**************************************************************************
|
||||
* Reader
|
|
@ -2,7 +2,7 @@
|
|||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include "creole.c"
|
||||
#include "../creole.c"
|
||||
|
||||
#if 0
|
||||
struct seq {
|
Loading…
Reference in New Issue