From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from [87.239.111.99] (localhost [127.0.0.1]) by dev.tarantool.org (Postfix) with ESMTP id 67633727D0A; Wed, 6 Dec 2023 21:55:57 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 67633727D0A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1701888957; bh=Q7zcF2LS8mG/dkMeeHASwTBQINVEG/j3C95nu/JgcbI=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=BS91IiBcXWgELLU6cJRdHqovEwFHkbmAfQ5h3vOkW9GzoX0yK7VmcgUqODPmqfTIf g85BlNweWsn7JRot00GBSxH5e+q7ZYeMX4lweK8EzsyHL3LIkSj47FB+4y+78k9rJb nkHZS69nJrMjD5twMesAgfCBx7FOEIhVMolXXpYk= Received: from mail-lf1-f46.google.com (mail-lf1-f46.google.com [209.85.167.46]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id BAE80727D0A for ; Wed, 6 Dec 2023 21:55:27 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org BAE80727D0A Received: by mail-lf1-f46.google.com with SMTP id 2adb3069b0e04-50be3611794so142320e87.0 for ; Wed, 06 Dec 2023 10:55:27 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1701888927; x=1702493727; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=SEBRqesQKum3lany4VEmuLdzQ8aaWSXa5p/zgAdkFBQ=; b=udH/0Gt1TRjmK3tSRCuhM6Xu/l2LPD4X7G1bRknPyllmWAos9v/GXf6E3pnA4xRoRP yKCa1kDSPuRYGnptcXEn46YWyO1YPHtH0tBq8Ds8/eAR3w+Q5zIIL2E1RTfkCumUg6WS 6D/KJ3+WE//TqpaeAEvhswwLEc6H50YTta1NRrUJy8qKpn62gfzZv9QvUkbJlpoXpYzM Cq/js5qwhpKKyS903d5qluhItTpbsQrEP4sdS7b2isJ87MihvjaO2VgsZbcfhNB/8sex Oudq/MxF/4pWVLOMGJo1Clx2CtACR8isFNkO0PHzcSdVtCPxwzer2jzZdscNR0Q4RNaB lLug== X-Gm-Message-State: AOJu0YxIH0blP5DrDFOmO2eA8rNsryG7UkJT6m7s1DHurhOCqIAdzrhl 6w2P6fDc/VunZWgRmUWt0f1CrmKJefgI8w== X-Google-Smtp-Source: AGHT+IGOXI3aoAY+Kuu65afFDilY/K88xD+3zSnF2XJZ9rC1OCkuwO32/KKv9uQT5SiOoSzP+e1WyA== X-Received: by 2002:a19:f019:0:b0:50b:ff2a:8848 with SMTP id p25-20020a19f019000000b0050bff2a8848mr789363lfc.120.1701888926823; Wed, 06 Dec 2023 10:55:26 -0800 (PST) Received: from localhost.localdomain (95-24-1-238.broadband.corbina.ru. [95.24.1.238]) by smtp.gmail.com with ESMTPSA id t23-20020a199117000000b0050c0320f167sm606367lfd.245.2023.12.06.10.55.26 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 06 Dec 2023 10:55:26 -0800 (PST) X-Google-Original-From: Maxim Kokryashkin To: tarantool-patches@dev.tarantool.org, skaplun@tarantool.org, sergeyb@tarantool.org Date: Wed, 6 Dec 2023 21:55:16 +0300 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH luajit v2 1/6] build: purge sysprof.collapse module X-BeenThere: tarantool-patches@dev.tarantool.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Maxim Kokryashkin via Tarantool-patches Reply-To: Maxim Kokryashkin Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" This module became unused as a result of commit tarantool/tarantool@e2851883cd4c23d41bd9aec23fad06fd10d39c45, so it can be purged safely from the LuaJIT sources. Part of tarantool/tarantool#8700 --- tools/CMakeLists.txt | 6 ------ tools/sysprof/collapse.lua | 3 --- 2 files changed, 9 deletions(-) delete mode 100755 tools/sysprof/collapse.lua diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index b951f767..1dfc39e4 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -60,9 +60,6 @@ if(LUAJIT_DISABLE_SYSPROF) else() add_custom_target(tools-parse-sysprof EXCLUDE_FROM_ALL DEPENDS sysprof/parse.lua - # TODO: This line is not deleted only for the sake of integrational - # testing. It should be deleted in the next series. - sysprof/collapse.lua sysprof.lua utils/bufread.lua utils/symtab.lua @@ -71,9 +68,6 @@ else() install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/sysprof/parse.lua - # TODO: This line is not deleted only for the sake of integrational - # testing. It should be deleted in the next series. - ${CMAKE_CURRENT_SOURCE_DIR}/sysprof/collapse.lua DESTINATION ${LUAJIT_DATAROOTDIR}/sysprof PERMISSIONS OWNER_READ OWNER_WRITE diff --git a/tools/sysprof/collapse.lua b/tools/sysprof/collapse.lua deleted file mode 100755 index cac92f1a..00000000 --- a/tools/sysprof/collapse.lua +++ /dev/null @@ -1,3 +0,0 @@ --- FIXME: This file is not deleted only for the sake of --- integrational testing. It should be deleted in the --- next series. -- 2.43.0