diff options
author | Loïc Minier <lool@dooz.org> | 2010-01-04 23:52:22 +0100 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2010-01-04 23:52:22 +0100 |
commit | 61754016baf1b8f4e86ccb3a49da335b7594e07e (patch) | |
tree | 36f443f98e0e80a93c35dfc936f72e9147815676 /test_pbuilder-satisfydepends-funcs | |
parent | 17f5763b0863a67d81fa7b8071329cb117ca987e (diff) | |
download | pbuilder-61754016baf1b8f4e86ccb3a49da335b7594e07e.tar pbuilder-61754016baf1b8f4e86ccb3a49da335b7594e07e.tar.gz |
Normalize output of get_source_control_field()
Diffstat (limited to 'test_pbuilder-satisfydepends-funcs')
-rwxr-xr-x | test_pbuilder-satisfydepends-funcs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test_pbuilder-satisfydepends-funcs b/test_pbuilder-satisfydepends-funcs index 7bb6d30..479c1ff 100755 --- a/test_pbuilder-satisfydepends-funcs +++ b/test_pbuilder-satisfydepends-funcs @@ -22,9 +22,9 @@ test_get_build_deps() { Source: amule XXXX: Build-Depends: - autotools-dev, + autotools-dev ( >= 1.2 ) , debhelper , - quilt, + quilt(<<12:0), ## libwxgtk2.8-dev Build-Depends-Indep: test, test1, @@ -45,10 +45,10 @@ trap cleanup sigpipe sighup exit # TODO move to build dir DEBIAN_CONTROL="$(tempfile)" -expect_output " autotools-dev, debhelper , quilt, libwxgtk2.8-dev - test, test1, test2, test3 | test4, test5" \ +expect_output "autotools-dev (>= 1.2), debhelper, quilt (<< 12:0), libwxgtk2.8-dev +test, test1, test2, test3 | test4, test5" \ test_get_build_deps "no" -expect_output " autotools-dev, debhelper , quilt, libwxgtk2.8-dev" \ +expect_output "autotools-dev (>= 1.2), debhelper, quilt (<< 12:0), libwxgtk2.8-dev" \ test_get_build_deps "yes" testlib_summary |