~ubuntu-branches/ubuntu/saucy/db/saucy-proposed

« back to all changes in this revision

Viewing changes to test/csharp/SecondaryBTreeDatabaseTest.cs

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý
  • Date: 2011-12-05 15:44:35 UTC
  • mfrom: (13.1.26 sid)
  • Revision ID: package-import@ubuntu.com-20111205154435-753djoc1gbrlxgnm
Tags: 5.1.29-1
* Add lintian-override for (not)embedded sqlite in MultiArch
* Generated db_signature is different on each arch
* Update priority of db5.1-util and add missing description of
  db5.1_sql
* Add git-buildpackage configuration
* Imported Upstream version 5.1.29

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
                            BitConverter.GetBytes((int)255));
104
104
                        Assert.Less(0, cmp(dbt1, dbt2));
105
105
 
 
106
 
 
107
                        for (int i = 0; i < 1000; i++)
 
108
                                btreeDB.Put(new DatabaseEntry(
 
109
                                    BitConverter.GetBytes(i)), new DatabaseEntry(
 
110
                                    BitConverter.GetBytes(i)));
 
111
 
106
112
                        secDB.Close();
107
113
                        btreeDB.Close();
108
114
                }