UnitTests: Handle the unusual case where 'make clean' is executed with no .config or Make.defs file

This commit is contained in:
Gregory Nutt 2016-05-10 15:36:50 -06:00
parent bc069b3b41
commit 0ccaac3959
20 changed files with 97 additions and 18 deletions
ChangeLog.txt
UnitTests
CButton
CButtonArray
CCheckBox
CGlyphButton
CGlyphSliderHorizontal
CImage
CKeypad
CLabel
CLatchButton
CLatchButtonArray
CListBox
CProgressBar
CRadioButton
CScrollbarHorizontal
CScrollbarVertical
CSliderHorizonal
CSliderVertical
CTextBox
nxwm

@ -571,4 +571,7 @@
required by the current apps/Makefile. Hmmm.. This means that no one required by the current apps/Makefile. Hmmm.. This means that no one
has built the NxWidgets packages in the last several realeases! has built the NxWidgets packages in the last several realeases!
(2016-04-23). (2016-04-23).
* UnitTests: Add some default definitions to handle the (unusual) case
where 'make clean' is called with no .config or Make.defs file installed
(2016-05-10).

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/Unitests/CButton/Makefile # NxWidgets/Unitests/CButton/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CButtonArray/Makefile # NxWidgets/UnitTests/CButtonArray/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CCheckBox/Makefile # NxWidgets/UnitTests/CCheckBox/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CGlyphButton/Makefile # NxWidgets/UnitTests/CGlyphButton/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CGlyphSliderHorizontal/Makefile # NxWidgets/UnitTests/CGlyphSliderHorizontal/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CImage/Makefile # NxWidgets/UnitTests/CImage/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CKeyPad/Makefile # NxWidgets/UnitTests/CKeyPad/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CLabel/Makefile # NxWidgets/UnitTests/CLabel/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CLatchButton/Makefile # NxWidgets/UnitTests/CLatchButton/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CLatchButtonArray/Makefile # NxWidgets/UnitTests/CLatchButtonArray/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CListBox/Makefile # NxWidgets/UnitTests/CListBox/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CProgressBar/Makefile # NxWidgets/UnitTests/CProgressBar/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CRadioButton/Makefile # NxWidgets/UnitTests/CRadioButton/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CScrollbarHorizontal/Makefile # NxWidgets/UnitTests/CScrollbarHorizontal/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CScrollbarVertical/Makefile # NxWidgets/UnitTests/CScrollbarVertical/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CSliderHorizontal/Makefile # NxWidgets/UnitTests/CSliderHorizontal/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CSliderVertical/Makefile # NxWidgets/UnitTests/CSliderVertical/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -1,7 +1,7 @@
################################################################################# #################################################################################
# NxWidgets/UnitTests/CTextBox/Makefile # NxWidgets/UnitTests/CTextBox/Makefile
# #
# Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. # Copyright (C) 2012-2013, 2016 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org> # Author: Gregory Nutt <gnutt@nuttx.org>
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS

@ -36,6 +36,10 @@
TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'} TESTDIR := ${shell pwd | sed -e 's/ /\\ /g'}
-include $(TOPDIR)/Make.defs -include $(TOPDIR)/Make.defs
OBJEXT ?= .o
DELIM ?= /
include $(APPDIR)$(DELIM)Make.defs include $(APPDIR)$(DELIM)Make.defs
# Add the path to the NXWidget include directory to the CFLAGS # Add the path to the NXWidget include directory to the CFLAGS