2011-09-09 22:13:06 -04:00
|
|
|
USING: mason.config mason.platform namespaces tools.test
|
|
|
|
strings system ;
|
2011-08-23 01:14:38 -04:00
|
|
|
IN: mason.platform.tests
|
|
|
|
|
|
|
|
[ t ] [ platform string? ] unit-test
|
2011-09-09 22:13:06 -04:00
|
|
|
|
|
|
|
[
|
|
|
|
linux target-os set
|
|
|
|
x86.32 target-cpu set
|
|
|
|
f target-variant set
|
|
|
|
|
|
|
|
[ "linux-x86-32" ] [ platform ] unit-test
|
|
|
|
] with-scope
|
|
|
|
|
|
|
|
[
|
|
|
|
windows target-os set
|
|
|
|
x86.32 target-cpu set
|
|
|
|
"xp" target-variant set
|
|
|
|
|
|
|
|
[ "windows-x86-32-xp" ] [ platform ] unit-test
|
|
|
|
] with-scope
|