From c29237d360dac35c3969e65fecdb97e1c7d1b59f Mon Sep 17 00:00:00 2001
From: jD91mZM2 <me@krake.one>
Date: Wed, 12 Jun 2019 14:42:38 +0200
Subject: [PATCH] Revert "Regenerate test output after !220"

Well I'm dumb... This test was already ran in a way that wasn't
verifying output, because this test outputs things that can
differ. Excuse me for not noticing!

This reverts commit 0af78b1e0661a59ed1014475c4e71a80e1817af3.
---
 tests/Makefile                     |  1 -
 tests/expected/stdlib/alloc.stderr |  0
 tests/expected/stdlib/alloc.stdout | 31 ------------------------------
 3 files changed, 32 deletions(-)
 delete mode 100644 tests/expected/stdlib/alloc.stderr
 delete mode 100644 tests/expected/stdlib/alloc.stdout

diff --git a/tests/Makefile b/tests/Makefile
index 3c45bf7f0..31421c63c 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -37,7 +37,6 @@ EXPECT_NAMES=\
 	stdio/setvbuf \
 	stdio/sprintf \
 	stdlib/a64l \
-	stdlib/alloc \
 	stdlib/atof \
 	stdlib/atoi \
 	stdlib/div \
diff --git a/tests/expected/stdlib/alloc.stderr b/tests/expected/stdlib/alloc.stderr
deleted file mode 100644
index e69de29bb..000000000
diff --git a/tests/expected/stdlib/alloc.stdout b/tests/expected/stdlib/alloc.stdout
deleted file mode 100644
index dbbedd189..000000000
--- a/tests/expected/stdlib/alloc.stdout
+++ /dev/null
@@ -1,31 +0,0 @@
-malloc                : 0x2038870, errno: 0 = Success
-malloc (SIZE_MAX)     : (nil), errno: 12 = Out of memory
-calloc                : 0x2038870, errno: 0 = Success
-calloc (overflowing)  : (nil), errno: 12 = Out of memory
-realloc               : 0x2038870, errno: 0 = Success
-realloc (SIZE_MAX)    : (nil), errno: 12 = Out of memory
-memalign              : 0x2038a00, errno: 0 = Success
-memalign (SIZE_MAX)   : (nil), errno: 12 = Out of memory
-memalign (alignment 0): (nil), errno: 22 = Invalid argument
-memalign (alignment 3): (nil), errno: 22 = Invalid argument
-aligned_alloc (size % alignment == 0):
-                        0x2038980, errno: 0 = Success
-aligned_alloc (size % alignment != 0):
-                        (nil), errno: 22 = Invalid argument
-valloc                : 0x2039000, errno: 0 = Success
-valloc (SIZE_MAX)     : (nil), errno: 12 = Out of memory
-posix_memalign:
-                        0x2038980, return value: 0 = Success,
-                        errno: 0 = Success
-posix_memalign (alignment 0):
-                        (nil), return value: 22 = Invalid argument,
-                        errno: 0 = Success
-posix_memalign (non-power-of-two multiple of sizeof(void *)):
-                        (nil), return value: 22 = Invalid argument,
-                        errno: 0 = Success
-posix_memalign (size 0):
-                        0x2038ac0, return value: 0 = Success,
-                        errno: 0 = Success
-posix_memalign (SIZE_MAX):
-                        (nil), return value: 12 = Out of memory,
-                        errno: 12 = Out of memory
-- 
GitLab