File: patchsys-1.sh

package info (click to toggle)
cdbs 0.4.48
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,012 kB
  • ctags: 58
  • sloc: sh: 4,521; xml: 1,968; makefile: 159; perl: 64; python: 16; ansic: 7; java: 5
file content (28 lines) | stat: -rwxr-xr-x 569 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
# -*- mode: sh; coding: utf-8 -*-
# Copyright © 2006 Peter Eisentraut <petere@debian.org>

# Test simple-patchsys

. testsuite_functions

options $@
setup_workdir

cat <<EOF >$WORKDIR/debian/rules
#!/usr/bin/make -f
include debian/testsuite.mk
include \$(_cdbs_package_root_dir)/1/rules/debhelper.mk.in
include \$(_cdbs_package_root_dir)/1/rules/simple-patchsys.mk.in
EOF
chmod +x $WORKDIR/debian/rules

cp -R patches $WORKDIR/debian/

build_package

test -s $WORKDIR/dummy1 || return_fail
test -s $WORKDIR/dummy2 || return_fail

clean_workdir
return_pass