Commit Diff


commit - d7b37ceab4f50fe0bdc822a71faed1ee86012bda
commit + db7864879c00d95cfba9d607a47a53cce37b37b2
blob - /dev/null
blob + 190428fa256bdf24f24541577e3e53d1f57c11c2 (mode 644)
--- /dev/null
+++ regress/super-simple.9ps
@@ -0,0 +1,14 @@
+const (
+	version = "9P2000"
+	msize = 4194304:u32
+	notag = -1:u8
+
+	Tversion = 100:u8
+	Rversion = 101:u8
+)
+
+testing "if version works" dir "./root" {
+	send(Tversion, notag, msize, version)
+	m = recv()
+	print("the response is", m)
+}