Clean up some duplication
[factor/jcg.git] / extra / mason / child / child-tests.factor
blob104360e1fa9aa01527d0152331066e9fcf486633
1 IN: mason.child.tests
2 USING: mason.child mason.config tools.test namespaces ;
4 [ { "make" "winnt-x86-32" } ] [
5     [
6         "winnt" target-os set
7         "x86.32" target-cpu set
8         make-cmd
9     ] with-scope
10 ] unit-test
12 [ { "make" "macosx-x86-32" } ] [
13     [
14         "macosx" target-os set
15         "x86.32" target-cpu set
16         make-cmd
17     ] with-scope
18 ] unit-test
20 [ { "gmake" "netbsd-ppc" } ] [
21     [
22         "netbsd" target-os set
23         "ppc" target-cpu set
24         make-cmd
25     ] with-scope
26 ] unit-test
28 [ { "./factor" "-i=boot.macosx-ppc.image" "-no-user-init" } ] [
29     [
30         "macosx" target-os set
31         "ppc" target-cpu set
32         boot-cmd
33     ] with-scope
34 ] unit-test