mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
Fixed new job index calc
This commit is contained in:
parent
d34844e76c
commit
32c1f64420
@ -92,7 +92,7 @@ int Trick::ScheduledJobQueue::push( JobData * new_job ) {
|
||||
/* Increment the size of the queue */
|
||||
list_size++ ;
|
||||
|
||||
int new_job_index = (insert_pt - list) / sizeof(JobData**);
|
||||
int new_job_index = ((unsigned long)insert_pt - (unsigned long)list) / sizeof(JobData**);
|
||||
if(new_job_index < curr_index) {
|
||||
curr_index++;
|
||||
}
|
||||
|
@ -70,6 +70,50 @@ TEST_F( ScheduledJobQueueTest , PushJobsbyJobOrder ) {
|
||||
EXPECT_TRUE( sjq.empty() ) ;
|
||||
}
|
||||
|
||||
TEST_F( ScheduledJobQueueTest , PushJobOntoSameIndex_CurrIndex0 ) {
|
||||
|
||||
Trick::JobData * job_ptr ;
|
||||
|
||||
EXPECT_EQ( sjq.size() , (unsigned int)0) ;
|
||||
EXPECT_TRUE( sjq.empty() ) ;
|
||||
|
||||
job_ptr = new Trick::JobData(0, 2 , "class_100", NULL, 1.0 , "job_4") ;
|
||||
job_ptr->sim_object_id = 4 ;
|
||||
job_ptr->job_class = 100 ;
|
||||
sjq.push(job_ptr) ;
|
||||
|
||||
EXPECT_EQ( sjq.size() , (unsigned int)1) ;
|
||||
EXPECT_EQ( sjq.get_curr_index() , (unsigned int)0) ;
|
||||
|
||||
job_ptr = new Trick::JobData(0, 2 , "class_100", NULL, 1.0 , "job_3") ;
|
||||
job_ptr->sim_object_id = 3 ;
|
||||
job_ptr->job_class = 100 ;
|
||||
sjq.push(job_ptr) ;
|
||||
|
||||
EXPECT_EQ( sjq.size() , (unsigned int)2) ;
|
||||
EXPECT_EQ( sjq.get_curr_index() , (unsigned int)0) ;
|
||||
|
||||
job_ptr = new Trick::JobData(0, 2 , "class_100", NULL, 1.0 , "job_2") ;
|
||||
job_ptr->sim_object_id = 2 ;
|
||||
job_ptr->job_class = 100 ;
|
||||
sjq.push(job_ptr) ;
|
||||
|
||||
EXPECT_EQ( sjq.size() , (unsigned int)3) ;
|
||||
EXPECT_EQ( sjq.get_curr_index() , (unsigned int)0) ;
|
||||
|
||||
job_ptr = new Trick::JobData(0, 2 , "class_100", NULL, 1.0 , "job_1") ;
|
||||
job_ptr->sim_object_id = 1 ;
|
||||
job_ptr->job_class = 100 ;
|
||||
sjq.push(job_ptr) ;
|
||||
|
||||
EXPECT_EQ( sjq.size() , (unsigned int)4) ;
|
||||
EXPECT_EQ( sjq.get_curr_index() , (unsigned int)0) ;
|
||||
|
||||
sjq.clear() ;
|
||||
EXPECT_EQ( sjq.size() , (unsigned int)0) ;
|
||||
EXPECT_TRUE( sjq.empty() ) ;
|
||||
}
|
||||
|
||||
TEST_F( ScheduledJobQueueTest , PushJobsbySimObjectOrder ) {
|
||||
//req.add_requirement("512154259");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user