Changeset 9d32ec in git for tests/Singular/test_ipid.cpp
- Timestamp:
- May 25, 2010, 9:41:33 AM (13 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e950c227bbb1015487eb989e58fdd987bb603ded
- Parents:
- d96d51146c3093190dd78ab600959b34241f6d32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Singular/test_ipid.cpp
rd96d51 r9d32ec 19 19 void killhdl2(idhdl h, idhdl * ih, ring r) 20 20 idhdl ggetid(const char *n, BOOLEAN local, idhdl *packhdl) 21 idhdl ggetid(const char *n , BOOLEAN local)21 idhdl ggetid(const char *n) 22 22 void ipListFlag(idhdl h) 23 23 lists ipNameList(idhdl root) … … 85 85 snprintf(s, sizeof(s), "dummy%06d", i); 86 86 rh = enterid(s, 0, INT_CMD, &IDROOT, TRUE); 87 CPPUNIT_ASSERT_EQUAL(rh, ggetid(s , TRUE));87 CPPUNIT_ASSERT_EQUAL(rh, ggetid(s)); 88 88 } 89 89 fEnd = Time(); … … 95 95 snprintf(s, sizeof(s), "ZDummy%06d", i); 96 96 rh = enterid(s, 0, INT_CMD, &IDROOT, TRUE); 97 CPPUNIT_ASSERT_EQUAL(rh, ggetid(s , TRUE));97 CPPUNIT_ASSERT_EQUAL(rh, ggetid(s)); 98 98 //snprintf(s, sizeof(s), "dummy%06d", i); 99 99 killid(s, &IDROOT); 100 CPPUNIT_ASSERT_EQUAL((idhdl)0, ggetid(s , TRUE));100 CPPUNIT_ASSERT_EQUAL((idhdl)0, ggetid(s)); 101 101 } 102 102 fEnd = Time();
Note: See TracChangeset
for help on using the changeset viewer.