summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendiadyoin1 <leon2002.la@gmail.com>2021-07-12 21:47:12 +0200
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-07-14 11:26:34 +0430
commitbdde44a8330c16757b49fef6cc8ef72c55c92267 (patch)
tree2b3137a17442745092aa9abdfbc286eb997451af
parent5b6d2644bcc5540ce15442e68b1b6f4d53f83b79 (diff)
downloadserenity-bdde44a8330c16757b49fef6cc8ef72c55c92267.zip
Tests: Assure that UE does not regress via `ue ls`
-rw-r--r--Tests/UserspaceEmulator/test-run-ls.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/UserspaceEmulator/test-run-ls.cpp b/Tests/UserspaceEmulator/test-run-ls.cpp
new file mode 100644
index 0000000000..2c1b3c27f9
--- /dev/null
+++ b/Tests/UserspaceEmulator/test-run-ls.cpp
@@ -0,0 +1,9 @@
+/*
+ * Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#include <stdlib.h>
+
+int main() { return system("UserspaceEmulator ls"); }