From ca2f01e0d0376db321a9157f8b6505b037a3de45 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 16 Jan 2009 17:02:54 -0600 Subject: [PATCH] Updating non-core libraries for monotonic? change --- basis/compiler/cfg/linear-scan/linear-scan-tests.factor | 2 +- basis/grouping/grouping-tests.factor | 3 ++- basis/io/files/unix/unix-tests.factor | 3 ++- basis/roman/roman.factor | 3 ++- core/generic/standard/standard-tests.factor | 3 ++- core/kernel/kernel-tests.factor | 2 +- core/math/floats/floats-tests.factor | 3 ++- core/sorting/sorting-tests.factor | 2 +- core/vocabs/loader/loader-tests.factor | 2 +- extra/project-euler/052/052.factor | 3 ++- 10 files changed, 16 insertions(+), 10 deletions(-) diff --git a/basis/compiler/cfg/linear-scan/linear-scan-tests.factor b/basis/compiler/cfg/linear-scan/linear-scan-tests.factor index 7420b4fd17..4ddd1fdc0b 100644 --- a/basis/compiler/cfg/linear-scan/linear-scan-tests.factor +++ b/basis/compiler/cfg/linear-scan/linear-scan-tests.factor @@ -1,7 +1,7 @@ IN: compiler.cfg.linear-scan.tests USING: tools.test random sorting sequences sets hashtables assocs kernel fry arrays splitting namespaces math accessors vectors -math.order +math.order grouping cpu.architecture compiler.cfg.instructions compiler.cfg.registers diff --git a/basis/grouping/grouping-tests.factor b/basis/grouping/grouping-tests.factor index 647f95f2cb..c91e5a56d6 100644 --- a/basis/grouping/grouping-tests.factor +++ b/basis/grouping/grouping-tests.factor @@ -1,4 +1,5 @@ -USING: grouping tools.test kernel sequences arrays ; +USING: grouping tools.test kernel sequences arrays +math ; IN: grouping.tests [ { 1 2 3 } 0 group ] must-fail diff --git a/basis/io/files/unix/unix-tests.factor b/basis/io/files/unix/unix-tests.factor index 003cb40621..d2f4494b0c 100644 --- a/basis/io/files/unix/unix-tests.factor +++ b/basis/io/files/unix/unix-tests.factor @@ -1,7 +1,8 @@ USING: tools.test io.files io.files.temp io.pathnames io.directories io.files.info io.files.info.unix continuations kernel io.files.unix math.bitwise calendar accessors -math.functions math unix.users unix.groups arrays sequences ; +math.functions math unix.users unix.groups arrays sequences +grouping ; IN: io.files.unix.tests [ "/usr/libexec/" ] [ "/usr/libexec/awk/" parent-directory ] unit-test diff --git a/basis/roman/roman.factor b/basis/roman/roman.factor index c9394b07ed..81a6d69a09 100644 --- a/basis/roman/roman.factor +++ b/basis/roman/roman.factor @@ -2,7 +2,8 @@ ! See http://factorcode.org/license.txt for BSD license. USING: arrays assocs kernel math math.order math.vectors namespaces make quotations sequences splitting.monotonic -sequences.private strings unicode.case lexer parser ; +sequences.private strings unicode.case lexer parser +grouping ; IN: roman