fix tests: removed values that generate diff. output on Linux64

This commit is contained in:
Raghubansh Kumar 2007-11-16 17:11:01 +00:00
parent fc5d24284f
commit 87be9bfd14
2 changed files with 2 additions and 161 deletions

View File

@ -27,10 +27,7 @@ $various_arrays = array(
// mixed value array with different types of keys
array(1 => .0001, 2 => .0021, -3 => -.01, 4 => -1, 5 => 0, 6 => .09, 7 => 2, -8 => -.9, 9 => 10.6E-2,
-10 => -10.6E-2, 11 => 33),
// array keys contains minimum and maximum ranges
array( 2147483647 => 1 , 2147483648 => 2, -2147483647 => 3, -2147483648 => 4, -0 => 5)
-10 => -10.6E-2, 11 => 33)
);
// set of possible flag values
@ -262,44 +259,6 @@ array(11) {
[-10]=>
float(-0.106)
}
-- Iteration 4 --
- With defualt sort flag -
bool(true)
array(4) {
[2147483647]=>
int(1)
[0]=>
int(5)
[-2147483647]=>
int(3)
[-2147483648]=>
int(4)
}
- Sort flag = SORT_REGULAR -
bool(true)
array(4) {
[2147483647]=>
int(1)
[0]=>
int(5)
[-2147483647]=>
int(3)
[-2147483648]=>
int(4)
}
- Sort flag = SORT_NUMERIC -
bool(true)
array(4) {
[2147483647]=>
int(1)
[0]=>
int(5)
[-2147483647]=>
int(3)
[-2147483648]=>
int(4)
}
Done
--UEXPECTF--
*** Testing krsort() : usage variations ***
@ -503,42 +462,4 @@ array(11) {
[-10]=>
float(-0.106)
}
-- Iteration 4 --
- With defualt sort flag -
bool(true)
array(4) {
[2147483647]=>
int(1)
[0]=>
int(5)
[-2147483647]=>
int(3)
[-2147483648]=>
int(4)
}
- Sort flag = SORT_REGULAR -
bool(true)
array(4) {
[2147483647]=>
int(1)
[0]=>
int(5)
[-2147483647]=>
int(3)
[-2147483648]=>
int(4)
}
- Sort flag = SORT_NUMERIC -
bool(true)
array(4) {
[2147483647]=>
int(1)
[0]=>
int(5)
[-2147483647]=>
int(3)
[-2147483648]=>
int(4)
}
Done

View File

@ -27,11 +27,7 @@ $various_arrays = array(
// mixed value array with different types of keys
array(1 => .0001, 2 => .0021, -3 => -.01, 4 => -1, 5 => 0, 6 => .09, 7 => 2, -8 => -.9,
9 => 10.6E-2, -10 => -10.6E-2, 11 => 33),
// array keys contains minimum and maximum ranges
array( 2147483647 => 1 , 2147483648 => 2, -2147483647 => 3, -2147483648 => 4, -0 => 5)
9 => 10.6E-2, -10 => -10.6E-2, 11 => 33)
);
// set of possible flag values
@ -263,44 +259,6 @@ array(11) {
[11]=>
int(33)
}
-- Iteration 4 --
- With defualt sort flag -
bool(true)
array(4) {
[-2147483648]=>
int(4)
[-2147483647]=>
int(3)
[0]=>
int(5)
[2147483647]=>
int(1)
}
- Sort flag = SORT_REGULAR -
bool(true)
array(4) {
[-2147483648]=>
int(4)
[-2147483647]=>
int(3)
[0]=>
int(5)
[2147483647]=>
int(1)
}
- Sort flag = SORT_NUMERIC -
bool(true)
array(4) {
[-2147483648]=>
int(4)
[-2147483647]=>
int(3)
[0]=>
int(5)
[2147483647]=>
int(1)
}
Done
--UEXPECTF--
*** Testing ksort() : usage variations ***
@ -504,42 +462,4 @@ array(11) {
[11]=>
int(33)
}
-- Iteration 4 --
- With defualt sort flag -
bool(true)
array(4) {
[-2147483648]=>
int(4)
[-2147483647]=>
int(3)
[0]=>
int(5)
[2147483647]=>
int(1)
}
- Sort flag = SORT_REGULAR -
bool(true)
array(4) {
[-2147483648]=>
int(4)
[-2147483647]=>
int(3)
[0]=>
int(5)
[2147483647]=>
int(1)
}
- Sort flag = SORT_NUMERIC -
bool(true)
array(4) {
[-2147483648]=>
int(4)
[-2147483647]=>
int(3)
[0]=>
int(5)
[2147483647]=>
int(1)
}
Done