From 8132ee39089a47efa477599b81eaf571f4af3c45 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 12 Nov 2009 12:39:22 -0500 Subject: * add non-default option to initialize matrices by 0 (useful for porting) * maketests really has to be in test/ --- scripts/CMakeLists.txt | 1 - scripts/maketests.in | 21 --------------------- 2 files changed, 22 deletions(-) delete mode 100755 scripts/maketests.in (limited to 'scripts') diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index e373d3188..2d40e32ae 100644 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -1,4 +1,3 @@ -configure_file(maketests.in ${CMAKE_BINARY_DIR}/maketests) configure_file(mctestr.in ${CMAKE_BINARY_DIR}/mctestr) configure_file(debug.in ${CMAKE_BINARY_DIR}/debug) configure_file(release.in ${CMAKE_BINARY_DIR}/release) diff --git a/scripts/maketests.in b/scripts/maketests.in deleted file mode 100755 index f9cafed26..000000000 --- a/scripts/maketests.in +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -if [ $# == 0 -o $# -ge 3 ] -then - echo "usage: ./maketests regexp [jobs]" - echo " makes tests matching the regexp, with concurrent make jobs" - exit 0 -fi - -TESTSLIST="${cmake_tests_list}" -targets_to_make=`echo "$TESTSLIST" | grep "$1" | sed s/^/test_/g | xargs` - -if [ $# == 1 ] -then - make $targets_to_make -fi - -if [ $# == 2 ] -then - make -j $2 $targets_to_make -fi -- cgit v1.2.3