10
1
mirror of https://github.com/pfloos/quack synced 2024-10-30 02:38:19 +01:00
QuAcK/src/test/run_test.f90

84 lines
2.2 KiB
Fortran
Raw Normal View History

2023-11-11 16:16:57 +01:00
subroutine run_test(doRtest,doUtest,doGtest)
implicit none
! Input variables
logical,intent(in) :: doRtest
logical,intent(in) :: doUtest
logical,intent(in) :: doGtest
! Local variables
2023-11-11 23:00:00 +01:00
double precision :: start_test ,end_test ,t_test
2023-11-11 16:16:57 +01:00
! Output variables
if(doRtest) then
write(*,*) '****************************************'
write(*,*) '* Testing Restricted Branch of QuAcK...*'
write(*,*) '****************************************'
write(*,*)
2023-11-11 23:00:00 +01:00
call wall_time(start_test)
2023-11-11 16:16:57 +01:00
call check_test_value('R')
2023-11-11 23:00:00 +01:00
call wall_time(end_test)
t_test = end_test - start_test
write(*,'(A65,1X,F9.3,A8)') 'Total CPU time for test of restricted branch = ',t_test,' seconds'
2023-11-11 16:16:57 +01:00
write(*,*)
write(*,*) '**************************'
write(*,*) '* End of Restricted Test *'
write(*,*) '**************************'
write(*,*)
end if
if(doUtest) then
write(*,*) '******************************************'
write(*,*) '* Testing Unrestricted Branch of QuAcK...*'
write(*,*) '******************************************'
write(*,*)
2023-11-11 23:00:00 +01:00
call wall_time(start_test)
2023-11-11 16:16:57 +01:00
call check_test_value('U')
2023-11-11 23:00:00 +01:00
call wall_time(end_test)
t_test = end_test - start_test
write(*,'(A65,1X,F9.3,A8)') 'Total CPU time for test of unrestricted branch = ',t_test,' seconds'
2023-11-11 16:16:57 +01:00
write(*,*)
write(*,*) '****************************'
write(*,*) '* End of Unrestricted Test *'
write(*,*) '****************************'
write(*,*)
end if
if(doGtest) then
write(*,*) '*****************************************'
write(*,*) '* Testing Generalized Branch of QuAcK...*'
write(*,*) '*****************************************'
write(*,*)
2023-11-11 23:00:00 +01:00
call wall_time(start_test)
2023-11-11 16:16:57 +01:00
call check_test_value('G')
2023-11-11 23:00:00 +01:00
call wall_time(end_test)
t_test = end_test - start_test
write(*,'(A65,1X,F9.3,A8)') 'Total CPU time for test of generalized branch = ',t_test,' seconds'
2023-11-11 16:16:57 +01:00
write(*,*)
write(*,*) '***************************'
write(*,*) '* End of Generalized Test *'
write(*,*) '***************************'
write(*,*)
end if
end subroutine