Lines Matching full:partial
81 -- Give readsz a chance to consume the partial input before we send more
91 readsz_test("partial", {"-b", 3}, "^$")
92 readsz_test("partial^D", {"-b", 3}, "^par$")
93 readsz_test("partial^D", {"-c", 1}, "^partial$")
94 for s = 1, #"partial" do
95 readsz_test("partial^D", {"-s", s}, "^partial$")
98 readsz_test({"par", "tial^D"}, {"-c", 1}, "^partial$")
99 -- line is incomplete, so we'll just see the "partial" even if we want two
100 readsz_test("partial^Dline", {"-c", 2}, "^partial$")
101 readsz_test("partial^Dline^D", {"-c", 1}, "^partial$")
102 readsz_test("partial^Dline^D", {"-c", 2}, "^partialline$")