Make terminal ui binaries work well everywhere

Here's some screenshots of an emulator tui program that was compiled on
Linux, then scp'd it to Windows, Mac, and FreeBSD.

https://justine.storage.googleapis.com/blinkenlights-cmdexe.png
https://justine.storage.googleapis.com/blinkenlights-imac.png
https://justine.storage.googleapis.com/blinkenlights-freebsd.png
https://justine.storage.googleapis.com/blinkenlights-lisp.png

How is this even possible that we have a nontrivial ui binary that just
works on Mac, Windows, Linux, and BSD? Surely a first ever achievement.

Fixed many bugs. Bootstrapped John McCarthy's metacircular evaluator on
bare metal in half the size of Altair BASIC (about 2.5kb) and ran it in
emulator for fun and profit.
This commit is contained in:
Justine Tunney 2020-10-10 21:18:53 -07:00
parent 680daf1210
commit 9e3e985ae5
276 changed files with 7026 additions and 3790 deletions

View file

@ -18,11 +18,14 @@
02110-1301 USA
*/
#include "libc/calls/calls.h"
#include "libc/limits.h"
#include "libc/runtime/runtime.h"
#include "libc/testlib/testlib.h"
#include "libc/time/time.h"
textstartup static void strftime_test_init(void) { setenv("TZ", "GST", true); }
textstartup static void strftime_test_init(void) {
setenv("TZ", "GST", true);
}
const void *const strftime_test_ctor[] initarray = {strftime_test_init};
testonly char *FormatTime(const char *fmt, struct tm *tm) {
@ -37,6 +40,12 @@ TEST(strftime_100, iso8601_ShakaZuluTime) {
FormatTime("%Y-%m-%dT%H:%M:%SZ", gmtime(&t)));
}
TEST(xiso8601, testUnixYearZero) {
int64_t t = 0;
ASSERT_STREQ("1970-01-01T00:00:00Z",
FormatTime("%Y-%m-%dT%H:%M:%SZ", gmtime(&t)));
}
TEST(strftime_100, rfc2822_ShakaZuluTime) {
int64_t t = 0x5cd04d0e;
ASSERT_STREQ("Mon, 06 May 2019 15:04:46 +0000",
@ -66,3 +75,27 @@ TEST(strftime_201, rfc822_GoogleStandardTime) {
ASSERT_STREQ("Mon, 06 May 19 08:04:46 -0700",
FormatTime("%a, %d %b %y %T %z", localtime(&t)));
}
/* TEST(xiso8601, testModernity_TODO) { */
/* int64_t t = (1600 - 1970) * 31536000; */
/* ASSERT_STREQ("1600-01-01T00:00:00Z", */
/* FormatTime("%Y-%m-%dT%H:%M:%SZ", gmtime(&t))); */
/* } */
TEST(xiso8601, testAtLeastBetterThanTraditionalUnixLimit) {
int64_t t = 10737418235;
ASSERT_STREQ("2310-04-04T16:10:35Z",
FormatTime("%Y-%m-%dT%H:%M:%SZ", gmtime(&t)));
}
TEST(xiso8601, testSomethingHuge) {
int64_t t = 7707318812667;
ASSERT_STREQ("246205-03-18T20:24:27Z",
FormatTime("%Y-%m-%dT%H:%M:%SZ", gmtime(&t)));
}
/* TEST(xiso8601, testMostOfStelliferousEra_TODO) { */
/* int64_t t = INT64_MAX; */
/* ASSERT_STREQ("somethinghuge-01-01T00:00:00Z", */
/* FormatTime("%Y-%m-%dT%H:%M:%SZ", gmtime(&t))); */
/* } */