kandeshvari / phantomuserland

Automatically exported from code.google.com/p/phantomuserland
GNU Lesser General Public License v3.0
1 stars 0 forks source link

amap test fails #37

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Run krenel tests. Result is:

-----
Test fail: modified is not true
!!! KERNEL TEST FAILED: amap -> -1
-----

relevant code is (in test_amap.c)

    test_check_false(  amap_check_modify( &map, 10, 1, MAP_USED, &modified ) );
    test_check_false(  amap_check_modify( &map, 10, 1, MAP_USED, &modified ) );
    test_check_false( modified );

    test_check_false(  amap_check_modify( &map, 10, 1, MAP_FREE, &modified ) );
    test_check_true( modified );

Failing function is 'amap_check_modify', which must set &modified to true
when modifying map entry.

Original issue reported on code.google.com by dmitry.zavalishin@gmail.com on 5 Jun 2010 at 11:43

GoogleCodeExporter commented 9 years ago

Original comment by dmitry.zavalishin@gmail.com on 6 Jun 2010 at 11:12