~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/pkg/sort/search_test.go

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-08-03 17:04:59 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110803170459-wzd99m3567y80ila
Tags: 1:59-1
* Imported Upstream version 59
* Refresh patches to a new release
* Fix FTBFS on ARM (Closes: #634270)
* Update version.bash to work with Debian packaging and not hg
  repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
        {"SearchInts", SearchInts(data, 11), 8},
108
108
        {"SearchFloat64s", SearchFloat64s(fdata, 2.1), 4},
109
109
        {"SearchStrings", SearchStrings(sdata, ""), 0},
110
 
        {"IntArray.Search", IntArray(data).Search(0), 2},
111
 
        {"Float64Array.Search", Float64Array(fdata).Search(2.0), 3},
112
 
        {"StringArray.Search", StringArray(sdata).Search("x"), 3},
 
110
        {"IntSlice.Search", IntSlice(data).Search(0), 2},
 
111
        {"Float64Slice.Search", Float64Slice(fdata).Search(2.0), 3},
 
112
        {"StringSlice.Search", StringSlice(sdata).Search("x"), 3},
113
113
}
114
114
 
115
115