summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/scripts/features/load8
-rw-r--r--tests/scripts/features/loadapi4
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/scripts/features/load b/tests/scripts/features/load
index 3713f944..41333a54 100644
--- a/tests/scripts/features/load
+++ b/tests/scripts/features/load
@@ -25,11 +25,11 @@ char* getenv (const char*);
int plugin_is_GPL_compatible;
-int testload_gmk_setup (gmk_floc *);
-int explicit_setup (gmk_floc *);
+int testload_gmk_setup (unsigned int, gmk_floc *);
+int explicit_setup (unsigned int, gmk_floc *);
int
-testload_gmk_setup (gmk_floc *pos)
+testload_gmk_setup (unsigned int abi, gmk_floc *pos)
{
(void)pos;
gmk_eval ("TESTLOAD = implicit", 0);
@@ -39,7 +39,7 @@ testload_gmk_setup (gmk_floc *pos)
}
int
-explicit_setup (gmk_floc *pos)
+explicit_setup (unsigned int abi, gmk_floc *pos)
{
(void)pos;
gmk_eval ("TESTLOAD = explicit", 0);
diff --git a/tests/scripts/features/loadapi b/tests/scripts/features/loadapi
index a72f1f1b..311260f9 100644
--- a/tests/scripts/features/loadapi
+++ b/tests/scripts/features/loadapi
@@ -28,7 +28,7 @@ char *getenv (const char*);
int plugin_is_GPL_compatible;
-int testapi_gmk_setup ();
+int testapi_gmk_setup (unsigned int abi, const gmk_floc *floc);
static char *
test_eval (const char *buf)
@@ -71,7 +71,7 @@ func_test (const char *funcname, unsigned int argc, char **argv)
}
int
-testapi_gmk_setup (const gmk_floc *floc)
+testapi_gmk_setup (unsigned int abi, const gmk_floc *floc)
{
const char *verbose = getenv ("TESTAPI_VERBOSE");