| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #!/bin/sh
- set -e
- local TESTDIR=$(readlink -f $(dirname $0))
- . $TESTDIR/framework
- setupenvironment
- configarchitecture "i386"
- setupaptarchive
- testequal '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
- testequal '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
- testequal '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
- testequal '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
- testequal '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
- testequal '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
- testequal '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
|