From eae75dbe448b0395aee7e49c2a9cca9f82680782 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sun, 19 Jun 2022 08:56:36 -0400 Subject: Add Pl_Function -- a generic function pipeline --- libtests/qtest/pl_function.test | 17 +++++++++++++++++ libtests/qtest/pl_function/exp | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 libtests/qtest/pl_function.test create mode 100644 libtests/qtest/pl_function/exp (limited to 'libtests/qtest') diff --git a/libtests/qtest/pl_function.test b/libtests/qtest/pl_function.test new file mode 100644 index 00000000..847aa472 --- /dev/null +++ b/libtests/qtest/pl_function.test @@ -0,0 +1,17 @@ +#!/usr/bin/env perl +require 5.008; +use warnings; +use strict; + +chdir("pl_function") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('pl_function'); + +$td->runtest("pl_function", + {$td->COMMAND => "pl_function"}, + {$td->FILE => "exp", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(1); diff --git a/libtests/qtest/pl_function/exp b/libtests/qtest/pl_function/exp new file mode 100644 index 00000000..fd2ea1bc --- /dev/null +++ b/libtests/qtest/pl_function/exp @@ -0,0 +1,2 @@ +p1: 6: potato +p2: 5: salad -- cgit v1.2.3-54-g00ecf