Skip to content

Commit

Permalink
Fix syntax error in column_diagnostics test
Browse files Browse the repository at this point in the history
Fix a duplicate `-I` in the `column_diagnostics` test's `Makefile.am` file.
  • Loading branch information
Jesse Lentz authored and Jesse Lentz committed Oct 22, 2024
1 parent 95cd7b0 commit 2a3e230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_fms/column_diagnostics/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ check_PROGRAMS = test_column_diagnostics_r4 test_column_diagnostics_r8
test_column_diagnostics_r4_SOURCES = test_column_diagnostics.F90
test_column_diagnostics_r8_SOURCES = test_column_diagnostics.F90

test_column_diagnostics_r4_CPPFLAGS=-DTEST_CD_KIND_=4 -I$(AM_CPPFLAGS)
test_column_diagnostics_r8_CPPFLAGS=-DTEST_CD_KIND_=8 -I$(AM_CPPFLAGS)
test_column_diagnostics_r4_CPPFLAGS=$(AM_CPPFLAGS) -DTEST_CD_KIND_=4
test_column_diagnostics_r8_CPPFLAGS=$(AM_CPPFLAGS) -DTEST_CD_KIND_=8

TEST_EXTENSIONS = .sh
SH_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(abs_top_srcdir)/test_fms/tap-driver.sh
Expand Down

0 comments on commit 2a3e230

Please sign in to comment.