Index: uspace/app/tester/float/float2.c
===================================================================
--- uspace/app/tester/float/float2.c	(revision b1b201fd4076227e85653c9c3aebcebb51c89454)
+++ uspace/app/tester/float/float2.c	(revision b2acdf32b1370506dfcb53d4daf4abb481320895)
@@ -43,9 +43,4 @@
 };
 
-static double arguments_atan[OPERANDS] = {
-	3.5, 100.0, 50.0, 768.3156, 1080.499999, 1.0, 66.0,
-	2.718281828459045, 9.9, 0.001
-};
-
 static double arguments_exp[OPERANDS] = {
 	3.5, -2.1, 50.0, 0.0, 1.0, 13.2, -1.1, -5.5, 0.1, -66.0
@@ -64,10 +59,4 @@
 static double arguments_tanh[OPERANDS] = {
 	3.5, -2.1, 50.0, 0.0, 1.0, 13.2, -1.1, -5.5, 0.000001, -66000000.0
-};
-
-static double results_atan[OPERANDS] = {
-	1.292496667790, 1.560796660108, 1.550798992822, 1.569494779052,
-	1.569870829603, 0.785398163397, 1.555645970920, 1.218282905017,
-	1.470127674637, 0.000999999667
 };
 
@@ -193,24 +182,4 @@
 
 	for (unsigned int i = 0; i < OPERANDS; i++) {
-		double res = atan(arguments_atan[i]);
-
-		if (!cmp_double(res, results_atan[i])) {
-			TPRINTF("Double precision atan failed "
-			    "(%.12lf != %.12lf, arg %u)\n", res, results_atan[i], i);
-			fail = true;
-		}
-	}
-
-	for (unsigned int i = 0; i < OPERANDS; i++) {
-		float res = atanf(arguments_atan[i]);
-
-		if (!cmp_float(res, results_atan[i])) {
-			TPRINTF("Single precision atan failed "
-			    "(%f != %lf, arg %u)\n", res, results_atan[i], i);
-			fail = true;
-		}
-	}
-
-	for (unsigned int i = 0; i < OPERANDS; i++) {
 		double res = ceil(arguments[i]);
 
