1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fixed tests

This commit is contained in:
James Booth 2013-02-02 22:54:16 +00:00
parent b762f2c670
commit 86bad48f41
4 changed files with 6 additions and 6 deletions

View File

@ -22,9 +22,9 @@ profanity_SOURCES = src/contact.c src/contact.h src/log.c src/common.c \
TESTS = tests/testsuite
check_PROGRAMS = tests/testsuite
tests_testsuite_SOURCES = tests/test_contact_list.c src/contact_list.c src/contact.c \
tests/test_common.c tests/test_history.c src/history.c src/common.c \
tests/test_autocomplete.c src/autocomplete.c tests/testsuite.c \
tests/test_parser.c src/command_parser.c tests/test_jid.c src/jid.c
tests/test_common.c tests/test_history.c src/tools/history.c src/common.c \
tests/test_autocomplete.c src/tools/autocomplete.c tests/testsuite.c \
tests/test_parser.c src/command/parser.c tests/test_jid.c src/jid.c
tests_testsuite_LDADD = -lheadunit -lstdc++
man_MANS = docs/profanity.1

View File

@ -5,7 +5,7 @@
#include <glib.h>
#include "contact.h"
#include "autocomplete.h"
#include "tools/autocomplete.h"
static void clear_empty(void)
{

View File

@ -1,6 +1,6 @@
#include <stdio.h>
#include <head-unit.h>
#include "history.h"
#include "tools/history.h"
void previous_on_empty_returns_null(void)
{

View File

@ -1,7 +1,7 @@
#include <stdlib.h>
#include <string.h>
#include <head-unit.h>
#include "command.h"
#include "command/parser.h"
void
parse_null_returns_null(void)