summaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.unittests/unittests.exp
blob: 43797144f0af1236ad2b6f08e69798eb996aefe6 (plain)
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
# Copyright (C) 2017-2019 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GCC; see the file COPYING3.  If not see
# <http://www.gnu.org/licenses/>.

# Immediately exit if we can't run target executables.
if { ![isnative] } {
    return
}

proc unittest_list_modules { prog } {
    # Running the test runner without arguments prints a list of all
    # modules that have unittests compiled in.
    set result [libphobos_load "$prog" "" ""]
    return [lindex $result 1]
}

# Runs all unittests for each module compiled into the test program.
proc unittest_run_tests { name prog } {
    foreach module [unittest_list_modules $prog] {
        set result [libphobos_load "$prog" "$module" ""]
        set status [lindex $result 0]
        $status "libphobos.unittests/$name/$module"
    }
}

proc unittester { name prog } {
    if [file exists $prog] {
        unittest_run_tests $name $prog
    }
}

# List of test runners.
if [is-effective-target static] {
    unittester "druntime/static" "$objdir/../libdruntime/unittest_static$exeext"
    unittester "phobos/static" "$objdir/../src/unittest_static$exeext"
}

if [is-effective-target shared] {
    unittester "druntime/shared" "$objdir/../libdruntime/unittest$exeext"
    unittester "phobos/shared" "$objdir/../src/unittest$exeext"
}