summaryrefslogtreecommitdiffstats
path: root/test/integration/test-bug-593360-modifiers-in-names
blob: dc9a15231b69a7aa87c43844634a2d2a346ca651 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
set -e

TESTDIR="$(readlink -f "$(dirname "$0")")"
. "$TESTDIR/framework"
setupenvironment
configarchitecture "i386"
setupaptarchive

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  g++
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst g++ (4:4.4.5-1 localhost [i386])
Conf g++ (4:4.4.5-1 localhost [i386])' aptget install g++ -s

testsuccessequal "Reading package lists...
Building dependency tree...
Package 'g++' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget remove g++ -s

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  g++
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst g++ (4:4.4.5-1 localhost [i386])
Conf g++ (4:4.4.5-1 localhost [i386])' aptget install g+++ -s

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  g++
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst g++ (4:4.4.5-1 localhost [i386])
Conf g++ (4:4.4.5-1 localhost [i386])' aptget purge g+++ -s

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  apt
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst apt (0.8.8 localhost [all])
Conf apt (0.8.8 localhost [all])' aptget install apt -s

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  apt+
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst apt+ (0.8.8 localhost [all])
Conf apt+ (0.8.8 localhost [all])' aptget install apt+ -s

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  apt+
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst apt+ (0.8.8 localhost [all])
Conf apt+ (0.8.8 localhost [all])' aptget install apt++ -s

testsuccessequal 'Reading package lists...
Building dependency tree...
The following NEW packages will be installed:
  apt+
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Inst apt+ (0.8.8 localhost [all])
Conf apt+ (0.8.8 localhost [all])' aptget purge apt++ -s