1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
#!/bin/sh
set -o errexit
set -o nounset
set -o noclobber
out=/tmp/irt-regression.$$.log
opt="-q --vanilla --no-save"
tests="
./tests/testthat/test-simplestCI.R
inst/models/passing/SimpleConfidenceIntervals.R
inst/models/passing/SimpleAlgebraCIs.R
inst/models/passing/SimpleMLAlgebraCIs.R
inst/models/passing/IgnoreFixedConfidenceIntervals.R
inst/models/passing/ConfidenceIntervalsDefVar.R
inst/models/passing/CIduplicates.R
inst/models/passing/checkStandardizedLoadingsEtcetera.R
tests/testthat/test-ACELRTCI20160808.R
inst/models/nightly/MxTryHardTest.R
inst/models/nightly/RAM-3Factor-24Indicators-covdata-a-intervals.R
inst/models/nightly/thresholdModel1Factor5VariateWLS.R
inst/models/nightly/wu-neale-2012-lgc.R
inst/models/nightly/wu-neale-2012-symmetry.R
"
for t in $tests; do
echo -n "$t\t"
if false; then
R $opt -f $t
else
if ! /usr/bin/time --format "%E %F %R %c" bash -c "R $opt -f $t > $out 2>&1"; then
cat $out
exit
else
rm -f $out
fi
fi
done
exit 0
# ------ 2016 Aug 09
passing/simplestCI.R 0:01.58 0 52757 28
passing/SimpleConfidenceIntervals.R 0:04.12 0 63542 1861
passing/SimpleAlgebraCIs.R 0:02.08 3 52757 94
passing/SimpleMLAlgebraCIs.R 0:09.33 0 124285 9051
passing/IgnoreFixedConfidenceIntervals.R 0:01.58 0 52688 11
passing/ConfidenceIntervalsDefVar.R 0:02.45 0 57185 653
passing/CIduplicates.R 0:01.63 0 52740 17
passing/checkStandardizedLoadingsEtcetera.R 0:11.18 0 167556 14759
passing/MxTryHardTest.R 0:39.77 0 397600 64819
nightly/RAM-3Factor-24Indicators-covdata-a-intervals.R 0:43.65 0 52827 3638
nightly/thresholdModel1Factor5VariateWLS.R 0:51.11 2 130282 22383
# ------ 2016 Nov 09
passing/simplestCI.R 0:01.76 0 53015 32
passing/SimpleConfidenceIntervals.R 0:02.54 0 53703 173
passing/SimpleAlgebraCIs.R 0:02.06 0 53022 51
passing/SimpleMLAlgebraCIs.R 0:01.94 0 53679 140
passing/IgnoreFixedConfidenceIntervals.R 0:01.57 0 52969 16
passing/ConfidenceIntervalsDefVar.R 0:01.97 0 53239 30
passing/CIduplicates.R 0:01.55 0 52981 25
passing/checkStandardizedLoadingsEtcetera.R 0:04.11 0 53639 65
passing/MxTryHardTest.R 0:42.18 0 398140 63074
nightly/RAM-3Factor-24Indicators-covdata-a-intervals.R 0:50.83 0 53165 93
nightly/thresholdModel1Factor5VariateWLS.R 0:54.58 6 83676 22246
# ------ 2016 Nov 16
passing/simplestCI.R 0:01.76 0 53094 153
passing/SimpleConfidenceIntervals.R 0:02.75 0 53784 345
passing/SimpleAlgebraCIs.R 0:02.22 0 53098 329
passing/SimpleMLAlgebraCIs.R 0:02.14 0 53789 563
passing/IgnoreFixedConfidenceIntervals.R 0:01.64 0 53052 158
passing/ConfidenceIntervalsDefVar.R 0:02.08 0 53340 90
passing/CIduplicates.R 0:01.84 0 53083 218
passing/checkStandardizedLoadingsEtcetera.R 0:04.28 0 53714 248
passing/MxTryHardTest.R 0:47.93 0 398736 72019
passing/ACELRTCI20160808.R 0:07.80 0 57843 1962
nightly/RAM-3Factor-24Indicators-covdata-a-intervals.R 0:57.04 0 53214 1228
nightly/thresholdModel1Factor5VariateWLS.R 1:05.13 0 86708 27749
nightly/wu-neale-2012-lgc.R 0:15.69 0 56449 1611
nightly/wu-neale-2012-symmetry.R 0:11.22 0 56515 1205
# ------ 2020 Dec 03 (big performance differences vs 2016, but not investigated)
./tests/testthat/test-simplestCI.R 0:04.18 0 82302 44
inst/models/passing/SimpleConfidenceIntervals.R 0:04.94 0 82531 87
inst/models/passing/SimpleAlgebraCIs.R 0:06.91 0 76040 1058
inst/models/passing/SimpleMLAlgebraCIs.R 0:04.38 0 55087 229
inst/models/passing/IgnoreFixedConfidenceIntervals.R 0:02.71 0 53540 51
inst/models/passing/ConfidenceIntervalsDefVar.R 0:03.71 0 53783 861
inst/models/passing/CIduplicates.R 0:04.81 0 53556 211
inst/models/passing/checkStandardizedLoadingsEtcetera.R 0:11.18 0 75603 1606
tests/testthat/test-ACELRTCI20160808.R 0:09.14 0 72562 269
inst/models/nightly/MxTryHardTest.R 1:18.19 0 181530 146872
inst/models/nightly/RAM-3Factor-24Indicators-covdata-a-intervals.R 0:14.35 0 75308 220
inst/models/nightly/thresholdModel1Factor5VariateWLS.R 0:37.15 0 55151 15019
inst/models/nightly/wu-neale-2012-lgc.R 0:19.40 0 72051 6807
inst/models/nightly/wu-neale-2012-symmetry.R 0:12.27 0 71853 4405
|