configure: Add missing $val != "yes" test to override compile_prog() result
[fio.git] / t / lfsr-test.c
index 4352b89f3319959ab55c8e90d15e3878717b432e..7016f2688f6bfc0dc5f50811143722a1820d06ac 100644 (file)
@@ -38,6 +38,8 @@ int main(int argc, char *argv[])
        void *v = NULL, *v_start;
        double total, mean;
 
+       arch_init(argv);
+
        /* Read arguments */
        switch (argc) {
                case 5: if (strncmp(argv[4], "verify", 7) == 0)
@@ -78,7 +80,7 @@ int main(int argc, char *argv[])
                v_size = numbers * sizeof(uint8_t);
                v = malloc(v_size);
                memset(v, 0, v_size);
-               printf("\nVerification table is %lf KBs\n", (double)(v_size) / 1024);
+               printf("\nVerification table is %lf KiB\n", (double)(v_size) / 1024);
        }
        v_start = v;