From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 6788B4B5B8 for ; Sun, 9 Jun 2024 00:59:50 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 6E21268D72B; Sun, 9 Jun 2024 03:59:48 +0300 (EEST) Received: from mail-pg1-f182.google.com (mail-pg1-f182.google.com [209.85.215.182]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 031F468D70A for ; Sun, 9 Jun 2024 03:59:41 +0300 (EEST) Received: by mail-pg1-f182.google.com with SMTP id 41be03b00d2f7-6c5bcb8e8edso2773014a12.2 for ; Sat, 08 Jun 2024 17:59:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1717894779; x=1718499579; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=3YVT27lYip3HfFcNUaQvpwN4ffxke+H1EAN4xUcqnC0=; b=JNMzjtBi6dnmID+ErQRk+1VURzCabF0isswqJfPwkM2WfCikWw+jVYLWFhbcoYZDNG S+SD8F4oCcOPanI9oz+l3jFv8FZKFzlV8GoZHSe+HHvv2isBrRoSo5yoS5g+epna90ky g1KV4fHuyJm42yyUiwyaG65xv6xZg5ce8SUD6atXcwoTALpvayRJcsP/V9l9n90l4XYv C2DOmrDV50up0ypolIKoyfhK8aBeHr1LTM7g1hiBzp2lgM+IK0q4PhGjPmFSIJRwmJgp omwqCKSgDU32E/UL1Ytcy+NmszPOCAdFY0y5AQtDlUbwQ/jSksj4ZegYNpgiBPzkmk2z ewGw== X-Gm-Message-State: AOJu0Yz6RajZxVDPICUo6I21BmEpPghYD80+Q7MTPJWQr+O4IGjR7eFq /wnZIIhjiNM+9Na35sBHA5PQ1ToeDLHpnM8selQNPDaQQct4XDyUNec17g== X-Google-Smtp-Source: AGHT+IE+12oUfEBIhQWDxV8jZfA+ieY8QgY2EuAtjWT0EBrgrAwdPpo1iEKLMCmVY8ZwtZl13JE33g== X-Received: by 2002:a05:6a20:9683:b0:1af:acf6:f790 with SMTP id adf61e73a8af0-1b2f9ca362cmr5201058637.48.1717894779345; Sat, 08 Jun 2024 17:59:39 -0700 (PDT) Received: from localhost (76-14-89-2.sf-cable.astound.net. [76.14.89.2]) by smtp.gmail.com with ESMTPSA id 98e67ed59e1d1-2c2806d1c1dsm7898185a91.56.2024.06.08.17.59.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 08 Jun 2024 17:59:38 -0700 (PDT) Received: by localhost (sSMTP sendmail emulation); Sat, 08 Jun 2024 17:59:37 -0700 From: pal@sandflow.com To: ffmpeg-devel@ffmpeg.org Date: Sat, 8 Jun 2024 17:59:36 -0700 Message-Id: <20240609005936.5662-1-pal@sandflow.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] configure: remove false positives with valgrind-memcheck X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Pierre-Anthony Lemieux Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: From: Pierre-Anthony Lemieux If `--toolchain=valgrind-memcheck` is selected, fate-lavf-asf fails on a false positive. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 6c5b8aab9a..c708f2e38c 100755 --- a/configure +++ b/configure @@ -4571,7 +4571,7 @@ case "$toolchain" in target_exec_args="--tool=massif --alloc-fn=av_malloc --alloc-fn=av_mallocz --alloc-fn=av_calloc --alloc-fn=av_fast_padded_malloc --alloc-fn=av_fast_malloc --alloc-fn=av_realloc_f --alloc-fn=av_fast_realloc --alloc-fn=av_realloc" ;; valgrind-memcheck) - target_exec_args="--error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp" + target_exec_args="--error-exitcode=1 --expensive-definedness-checks=yes --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp" ;; esac ;; -- 2.25.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".