source: git/Tst/Short/bug_tr690.tst @ 3fec5d0

fieker-DuValspielwiese
Last change on this file since 3fec5d0 was 022882, checked in by Hans Schoenemann <hannes@…>, 9 years ago
test for tr. #690
  • Property mode set to 100644
File size: 238 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// memeory leak: local ordering, ring-cf
5ring r=integer,t,ds;
6ideal I = 2,3-t;
7int i;
8bigint m=memory(0);
9for(i=1; i<100; i++)
10{
11  ideal II = std(I);
12  kill II;
13}
14m-memory(0); //  should be 0
15
16tst_status(1);$
17
Note: See TracBrowser for help on using the repository browser.