Module: common-dylan-test-suite Synopsis: Common Dylan library test suite Author: Andy Armstrong Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc. All rights reserved. License: Functional Objects Library Public License Version 1.0 Dual-license: GNU Lesser General Public License Warranty: Distributed WITHOUT WARRANTY OF ANY KIND define machine-words class-test () //---*** Fill this in... end class-test ; define machine-words constant-test as-unsigned () //---** What can we do here? end constant-test as-unsigned; define machine-words constant-test $machine-word-size () //---** What can we do here? end constant-test $machine-word-size; define machine-words constant-test $maximum-signed-machine-word () //---** What can we do here? end constant-test $maximum-signed-machine-word; define machine-words constant-test $minimum-signed-machine-word () //---** What can we do here? end constant-test $minimum-signed-machine-word; define machine-words constant-test $maximum-unsigned-machine-word () //---** What can we do here? end constant-test $maximum-unsigned-machine-word; define machine-words constant-test $minimum-unsigned-machine-word () //---** What can we do here? end constant-test $minimum-unsigned-machine-word; //---*** Add rest of machine-words tests ...