From: mquinson Date: Thu, 10 Aug 2006 22:12:12 +0000 (+0000) Subject: Revert last change. context in SG mean the API we have to give the context feature... X-Git-Tag: v3.3~2650 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2235022b4221ac01e95ed3fd7254d47783b5210b?ds=sidebyside Revert last change. context in SG mean the API we have to give the context feature even if UNIX98 contextes are not available. So we certainly don't want to test it only when ucontext are availables git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2709 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/configure.ac b/configure.ac index 199a68e303..08611ed371 100644 --- a/configure.ac +++ b/configure.ac @@ -128,12 +128,10 @@ case $with_context in *) AC_MSG_ERROR("--with-context must be either ucontext or pthread") ;; esac -USE_CONTEXT=no if test "x$with_context" = "xucontext" ; then if test ".$mcsc" = .yes; then AC_MSG_RESULT(found working ucontext. Great!) AC_DEFINE([USE_UCONTEXT],1,[Define if we use ucontext or not]) - USE_CONTEXT=yes else if test ".$windows_context" = .yes ; then AC_MSG_RESULT(use windows context portability layer.) @@ -144,7 +142,6 @@ if test "x$with_context" = "xucontext" ; then fi fi fi -AC_SUBST(USE_CONTEXT) if test "x$with_context" = "xpthread"; then AC_CHECK_HEADERS([pthread.h]) diff --git a/testsuite/run_tests.in b/testsuite/run_tests.in index dc589ea8c2..4129ba9c24 100755 --- a/testsuite/run_tests.in +++ b/testsuite/run_tests.in @@ -32,13 +32,10 @@ fi ## xbt_TESTS=" \ xbt/log_usage@EXEEXT@; \ + xbt/context_usage@EXEEXT@; \ xbt/graphxml_usage@EXEEXT@ @srcdir@/xbt/graph.xml; \ xbt/heap_bench@EXEEXT@;" -if [ "x@USE_CONTEXT@" = "xyes" ] ; then - xbt_TESTS="$xbt_TESTS xbt/context_usage@EXEEXT@;" -fi - surf_TESTS="surf/maxmin_usage@EXEEXT@; \ surf/maxmin_bench@EXEEXT@; \ surf/trace_usage@EXEEXT@ --surf-path=@srcdir@/surf/; \