~ubuntu-branches/ubuntu/saucy/freecell-solver/saucy

« back to all changes in this revision

Viewing changes to scripts/time-threads-num.bash

  • Committer: Package Import Robot
  • Author(s): Gergely Risko
  • Date: 2012-06-22 10:08:05 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120622100805-evoda1ccdr8vt5xr
Tags: 3.12.0-1
New upstream version. (closes: #675262)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
p_dir="__p"
40
40
if ! test -e "$p_dir" ; then
41
41
    cp -R Presets "$p_dir"
42
 
    
 
42
 
43
43
    P="$(cd "$p_dir"/presets && pwd)" \
44
44
        perl -lpi -e 's!\A(dir=).*\z!$1$ENV{P}/!ms' ./"$p_dir"/presetrc
45
45
fi
48
48
 
49
49
if $RUN_SERIAL ; then
50
50
    echo "Testing Serial Run"
51
 
    ./freecell-solver-range-parallel-solve 1 32000 500 $ARGS > "$DUMPS_DIR"/dump
 
51
    ./freecell-solver-range-parallel-solve 1 "$MAX_BOARD" 4000 $ARGS | tee "$DUMPS_DIR"/dump
52
52
fi
53
53
 
54
54