mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
695b3ba0d0
Putting the most likely function to have problems at the top reduces break-point shenanigans.
49 lines
518 B
R
49 lines
518 B
R
#include "test-harness.h"
|
|
|
|
vector t1();
|
|
vector t2(float x);
|
|
|
|
vector
|
|
t3(float x)
|
|
{
|
|
return [x, t2(9).z, x] * 2;
|
|
}
|
|
|
|
vector
|
|
t1()
|
|
{
|
|
return [1, 2, 3];
|
|
}
|
|
|
|
vector
|
|
t2(float x)
|
|
{
|
|
return [x, x, x];
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
int ret = 0;
|
|
float x = 4;
|
|
float y = 5;
|
|
vector v;
|
|
|
|
v = t2(5);
|
|
if (v != [5, 5, 5]) {
|
|
printf("t2(5) = %v\n", v);
|
|
ret |= 1;
|
|
}
|
|
v = t3 (5);
|
|
if (v != [10, 18, 10]) {
|
|
printf("t3(5) = %v\n", v);
|
|
ret |= 1;
|
|
}
|
|
v = [x, y] / 2;
|
|
if (v != [2, 2.5]) {
|
|
printf("v = %v\n", v);
|
|
ret |= 1;
|
|
}
|
|
|
|
return ret;
|
|
}
|