mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-11 13:34:10 +00:00
[test] Move disjoint, relate and within tests to separate directories.
This commit is contained in:
parent
7fc973ce66
commit
0279dca727
@ -27,8 +27,6 @@ test-suite boost-geometry-algorithms
|
||||
[ run convert.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run covered_by.cpp ]
|
||||
[ run crosses.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run disjoint.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run disjoint_coverage.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run envelope.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run equals.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run expand.cpp ]
|
||||
@ -45,28 +43,22 @@ test-suite boost-geometry-algorithms
|
||||
[ run overlaps.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run perimeter.cpp ]
|
||||
[ run point_on_surface.cpp ]
|
||||
[ run relate_areal_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run relate_linear_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run relate_linear_linear.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run relate_pointlike_xxx.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run remove_spikes.cpp ]
|
||||
[ run reverse.cpp ]
|
||||
[ run simplify.cpp ]
|
||||
[ run touches.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run transform.cpp ]
|
||||
[ run unique.cpp ]
|
||||
[ run within.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_areal_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_linear_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_linear_linear.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_pointlike_xxx.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
;
|
||||
|
||||
build-project buffer ;
|
||||
build-project detail ;
|
||||
build-project difference ;
|
||||
build-project disjoint ;
|
||||
build-project distance ;
|
||||
build-project intersection ;
|
||||
build-project overlay ;
|
||||
build-project relate ;
|
||||
build-project sym_difference ;
|
||||
build-project union ;
|
||||
build-project within ;
|
||||
|
21
test/algorithms/disjoint/Jamfile.v2
Normal file
21
test/algorithms/disjoint/Jamfile.v2
Normal file
@ -0,0 +1,21 @@
|
||||
# Boost.Geometry (aka GGL, Generic Geometry Library)
|
||||
#
|
||||
# Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
|
||||
# Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
|
||||
# Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
|
||||
#
|
||||
# This file was modified by Oracle on 2014.
|
||||
# Modifications copyright (c) 2014, Oracle and/or its affiliates.
|
||||
#
|
||||
# Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
|
||||
# Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
#
|
||||
# Use, modification and distribution is subject to the Boost Software License,
|
||||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
test-suite boost-geometry-algorithms-disjoint
|
||||
:
|
||||
[ run disjoint.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run disjoint_coverage.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
;
|
@ -13,7 +13,7 @@
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
|
||||
#include <algorithms/test_disjoint.hpp>
|
||||
#include "test_disjoint.hpp"
|
||||
|
||||
#include <boost/geometry/geometries/geometries.hpp>
|
||||
#include <boost/geometry/geometries/point_xy.hpp>
|
23
test/algorithms/relate/Jamfile.v2
Normal file
23
test/algorithms/relate/Jamfile.v2
Normal file
@ -0,0 +1,23 @@
|
||||
# Boost.Geometry (aka GGL, Generic Geometry Library)
|
||||
#
|
||||
# Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
|
||||
# Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
|
||||
# Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
|
||||
#
|
||||
# This file was modified by Oracle on 2014.
|
||||
# Modifications copyright (c) 2014, Oracle and/or its affiliates.
|
||||
#
|
||||
# Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
|
||||
# Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
#
|
||||
# Use, modification and distribution is subject to the Boost Software License,
|
||||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
test-suite boost-geometry-algorithms
|
||||
:
|
||||
[ run relate_areal_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run relate_linear_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run relate_linear_linear.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run relate_pointlike_xxx.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
;
|
@ -11,7 +11,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_relate.hpp>
|
||||
#include "test_relate.hpp"
|
||||
|
||||
//TEST
|
||||
//#include <to_svg.hpp>
|
@ -11,7 +11,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_relate.hpp>
|
||||
#include "test_relate.hpp"
|
||||
|
||||
//TEST
|
||||
//#include <to_svg.hpp>
|
@ -11,7 +11,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_relate.hpp>
|
||||
#include "test_relate.hpp"
|
||||
|
||||
//TEST
|
||||
//#include <to_svg.hpp>
|
@ -11,7 +11,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_relate.hpp>
|
||||
#include "test_relate.hpp"
|
||||
|
||||
//TEST
|
||||
//#include <to_svg.hpp>
|
24
test/algorithms/within/Jamfile.v2
Normal file
24
test/algorithms/within/Jamfile.v2
Normal file
@ -0,0 +1,24 @@
|
||||
# Boost.Geometry (aka GGL, Generic Geometry Library)
|
||||
#
|
||||
# Copyright (c) 2007-2014 Barend Gehrels, Amsterdam, the Netherlands.
|
||||
# Copyright (c) 2008-2014 Bruno Lalande, Paris, France.
|
||||
# Copyright (c) 2009-2014 Mateusz Loskot, London, UK.
|
||||
#
|
||||
# This file was modified by Oracle on 2014.
|
||||
# Modifications copyright (c) 2014, Oracle and/or its affiliates.
|
||||
#
|
||||
# Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
|
||||
# Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
#
|
||||
# Use, modification and distribution is subject to the Boost Software License,
|
||||
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
test-suite boost-geometry-algorithms-within
|
||||
:
|
||||
[ run within.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_areal_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_linear_areal.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_linear_linear.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
[ run within_pointlike_xxx.cpp : : : <toolset>msvc:<cxxflags>/bigobj ]
|
||||
;
|
@ -12,7 +12,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_within.hpp>
|
||||
#include "test_within.hpp"
|
||||
|
||||
|
||||
#include <boost/geometry/geometries/geometries.hpp>
|
@ -12,7 +12,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_within.hpp>
|
||||
#include "test_within.hpp"
|
||||
|
||||
|
||||
#include <boost/geometry/geometries/geometries.hpp>
|
@ -12,7 +12,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_within.hpp>
|
||||
#include "test_within.hpp"
|
||||
|
||||
|
||||
#include <boost/geometry/geometries/geometries.hpp>
|
@ -12,7 +12,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_within.hpp>
|
||||
#include "test_within.hpp"
|
||||
|
||||
|
||||
#include <boost/geometry/geometries/geometries.hpp>
|
@ -12,7 +12,7 @@
|
||||
|
||||
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
|
||||
|
||||
#include <algorithms/test_within.hpp>
|
||||
#include "test_within.hpp"
|
||||
|
||||
|
||||
#include <boost/geometry/geometries/geometries.hpp>
|
Loading…
x
Reference in New Issue
Block a user