Przeglądaj źródła

Test that not unregistering a data is not too crashy

Samuel Thibault 10 lat temu
rodzic
commit
75bc74dd18
2 zmienionych plików z 81 dodań i 0 usunięć
  1. 1 0
      tests/Makefile.am
  2. 80 0
      tests/datawizard/no_unregister.c

+ 1 - 0
tests/Makefile.am

@@ -185,6 +185,7 @@ noinst_PROGRAMS =				\
 	datawizard/handle_to_pointer		\
 	datawizard/lazy_allocation		\
 	datawizard/lazy_unregister		\
+	datawizard/no_unregister		\
 	datawizard/noreclaim			\
 	datawizard/interfaces/copy_interfaces	\
 	datawizard/interfaces/block/block_interface \

+ 80 - 0
tests/datawizard/no_unregister.c

@@ -0,0 +1,80 @@
+/* StarPU --- Runtime system for heterogeneous multicore architectures.
+ *
+ * Copyright (C) 2010, 2011, 2012, 2013  Centre National de la Recherche Scientifique
+ *
+ * StarPU is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at
+ * your option) any later version.
+ *
+ * StarPU is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * See the GNU Lesser General Public License in COPYING.LGPL for more details.
+ */
+
+/* Check that not unregistering a data is not too crashy */
+
+#include <config.h>
+#include <starpu.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+#include "../helper.h"
+
+void dummy_func(void ** buffers, void * args)
+{
+	(void) buffers;
+	(void) args;
+}
+
+static struct starpu_codelet dummy_cl =
+{
+	.modes = { STARPU_RW },
+	.cpu_funcs = { dummy_func },
+	.nbuffers = 1
+};
+
+int main(void)
+{
+	int ret;
+	int buffer[1024];
+	starpu_data_handle_t handle;
+	struct starpu_task *t1,*t2;
+
+	ret = starpu_init(NULL);
+	if (ret == -ENODEV)
+		return STARPU_TEST_SKIPPED;
+	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
+
+	starpu_variable_data_register(&handle, STARPU_MAIN_RAM, (uintptr_t)buffer, 1024*sizeof(int));
+
+	t1 = starpu_task_create();
+
+	t2 = starpu_task_create();
+	t2->cl = &dummy_cl;
+	t2->detach = 0;
+	t2->handles[0] = handle;
+
+	starpu_task_declare_deps_array(t2, 1, &t1);
+
+	ret = starpu_task_submit(t2);
+	if (ret == -ENODEV)
+		return STARPU_TEST_SKIPPED;
+	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
+
+	ret = starpu_task_submit(t1);
+	if (ret == -ENODEV)
+		return STARPU_TEST_SKIPPED;
+	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
+
+	ret = starpu_task_wait(t2);
+	if (ret == -ENODEV)
+		return STARPU_TEST_SKIPPED;
+	STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_wait");
+
+	starpu_shutdown();
+
+	return EXIT_SUCCESS;
+}