Home | History | Annotate | Line # | Download | only in util
err-to-raise revision 1.1
      1  1.1  christos #! /usr/bin/env perl
      2  1.1  christos # Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
      3  1.1  christos #
      4  1.1  christos # Licensed under the Apache License 2.0 (the "License").  You may not use
      5  1.1  christos # this file except in compliance with the License.  You can obtain a copy
      6  1.1  christos # in the file LICENSE in the source distribution or at
      7  1.1  christos # https://www.openssl.org/source/license.html
      8  1.1  christos 
      9  1.1  christos # Run this program like this:
     10  1.1  christos #       perl -pi util/err-to-raise files...
     11  1.1  christos # or
     12  1.1  christos #       git ls-files | grep '\.c$' | xargs perl -pi util/err-to-raise
     13  1.1  christos # Consider running util/merge-err-lines first, to catch most (all?) of the
     14  1.1  christos # cases where the XXXerr() call is split into two lines.
     15  1.1  christos 
     16  1.1  christos # Do not use this in engines/, they have their own error reporting functions,
     17  1.1  christos # which do call ERR_raise().
     18  1.1  christos 
     19  1.1  christos use strict;
     20  1.1  christos use warnings;
     21  1.1  christos 
     22  1.1  christos s/\b([_A-Z0-9]+)err\(\s*\w+\s*,/ERR_raise(ERR_LIB_$1,/;
     23