Joel Sherrill commented on a discussion on 
testsuites/sptests/sptimespec01/init.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/314#note_117681

 >    test_convert();
 > +  test_greaterthan32bits();
 >  
 >    TEST_END();
 >  
 >    rtems_test_exit(0);
 >  }
 >  
 > +
 > +void test_greaterthan32bits(){
 > +/* Basic test to see if addition works with a value greater than 32 bits */
 > +  time_t returned_timeT= time(NULL);
 > +  rtems_timespec_set(timespec1, 4294967296LL, 1);
 > +  rtems_timespec_set(timespec2, 1, 1);
 > +  returned_timeT = rtems_timespec_add_to(timespec1, timespec2);
 > +  rtems_test_assert( 
 > (timespec1->tv_sec==4294967297LL)&&(timespec1->tv_nsec== 2));

I don't think the code looks like this now and gitlab is confused. Resolving.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/314#note_117681
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to