]> gitweb.factorcode.org Git - factor.git/blob - basis/cpu/x86/features/features-tests.factor
69847cacfa6166b1325ed80a3c6b884790dac225
[factor.git] / basis / cpu / x86 / features / features-tests.factor
1 IN: cpu.x86.features.tests
2 USING: cpu.x86.features tools.test kernel sequences math system ;
3
4 cpu x86? [
5     [ t ] [ sse2? { t f } member? ] unit-test
6     [ t ] [ [ 10000 [ ] times ] count-instructions integer? ] unit-test
7 ] when