0ab684
From 51e2c91412a511196e58efea5b87c460b4fa6a20 Mon Sep 17 00:00:00 2001
0ab684
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
0ab684
Date: Thu, 26 Jul 2018 13:17:52 +0200
0ab684
Subject: [PATCH] Avoid need of C++ compiler to pass the test suite.
0ab684
0ab684
The test suite fails when C++ compiler is not available on the system:
0ab684
0ab684
~~~
0ab684
TestGemExtCmakeBuilder#test_self_build:
0ab684
Gem::InstallError: cmake failed, exit code 1
0ab684
    /builddir/build/BUILD/ruby-2.5.1/lib/rubygems/ext/builder.rb:92:in `run'
0ab684
    /builddir/build/BUILD/ruby-2.5.1/lib/rubygems/ext/cmake_builder.rb:10:in `build'
0ab684
    /builddir/build/BUILD/ruby-2.5.1/test/rubygems/test_gem_ext_cmake_builder.rb:37:in `block in test_self_build'
0ab684
    /builddir/build/BUILD/ruby-2.5.1/test/rubygems/test_gem_ext_cmake_builder.rb:36:in `chdir'
0ab684
    /builddir/build/BUILD/ruby-2.5.1/test/rubygems/test_gem_ext_cmake_builder.rb:36:in `test_self_build'
0ab684
~~~
0ab684
0ab684
But there is nothing which would realy required C++. It is just CMake
0ab684
default to check for C++.
0ab684
---
0ab684
 test/rubygems/test_gem_ext_cmake_builder.rb | 1 +
0ab684
 1 file changed, 1 insertion(+)
0ab684
0ab684
diff --git a/test/rubygems/test_gem_ext_cmake_builder.rb b/test/rubygems/test_gem_ext_cmake_builder.rb
0ab684
index 76d3cb2afe..2d449fc2fd 100644
0ab684
--- a/test/rubygems/test_gem_ext_cmake_builder.rb
0ab684
+++ b/test/rubygems/test_gem_ext_cmake_builder.rb
0ab684
@@ -25,6 +25,7 @@ def test_self_build
0ab684
     File.open File.join(@ext, 'CMakeLists.txt'), 'w' do |cmakelists|
0ab684
       cmakelists.write <<-eo_cmake
0ab684
 cmake_minimum_required(VERSION 2.6)
0ab684
+project(self_build LANGUAGES NONE)
0ab684
 install (FILES test.txt DESTINATION bin)
0ab684
       eo_cmake
0ab684
     end