blob: 420dd204cb47e653c09173ab3c9d9f10163e7f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
# Copyright 2007 Johannes Lehtinen
# This shell script is free software; Johannes Lehtinen gives unlimited
# permission to copy, distribute and modify it.
set -e
tmpdir="tmp/test-loadmaximal"
mkdir -p "$tmpdir"
LC_ALL=C libtool --mode=execute $TEST_WRAPPER ../console/cpluff-console <<EOI > "$tmpdir"/console-out.txt
set-log-level error
load-plugin $srcdir/plugins/maximal
show-plugin-info maximal
EOI
sed -n -e '/^{$/,/^}$/{/^ plugin_path =/!p}' < "$tmpdir"/console-out.txt > "$tmpdir"/filtered.txt
diff -u "$srcdir"/expected/output-loadmaximal.txt "$tmpdir"/filtered.txt
|