Stop using ../../test_common to include common headers

Contributes to #395.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
Kevin Petit
2019-08-01 12:54:59 +01:00
committed by Kévin Petit
parent 9148b1648a
commit 45129878ab
150 changed files with 354 additions and 357 deletions

View File

@@ -1,5 +1,3 @@
include_directories(../../test_common/harness)
add_executable(conformance_test_contractions
contractions.c
../../test_common/harness/mt19937.c

View File

@@ -30,17 +30,17 @@
#include <sys/param.h>
#endif
#include "mingw_compat.h"
#include "harness/mingw_compat.h"
#if defined (__MINGW32__)
#include <sys/param.h>
#endif
#include <time.h>
#include "errorHelpers.h"
#include "../../test_common/harness/mt19937.h"
#include "../../test_common/harness/kernelHelpers.h"
#include "../../test_common/harness/rounding_mode.h"
#include "../../test_common/harness/fpcontrol.h"
#include "harness/errorHelpers.h"
#include "harness/mt19937.h"
#include "harness/kernelHelpers.h"
#include "harness/rounding_mode.h"
#include "harness/fpcontrol.h"
#if defined( __APPLE__ )
#include <sys/sysctl.h>
#endif
@@ -51,7 +51,7 @@
#endif
#if defined (_WIN32)
#include "../../test_common/harness/compat.h"
#include "harness/compat.h"
#include <string.h>
#endif